    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section {
    margin-top: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(giovanni/four.jpg);
    background-position: center;
    background-size: cover;
    z-index: 999;
}
header {
    width: 100vw;
    height: 60px;
    position: sticky;
    top: 0;
    left: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    background-color: white;
    z-index: 2000;
}
.back {
    margin-left: 10px;
    background-color: #333;
    color: #fff;
}
.toggleMenu {
    width: 50px;
    height: 30px;
    float: right;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.menu {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 2px;
    z-index: 3000;
}
.menuBar {
    width: 100vw;
    position: fixed;
    top: -100px;
    left: 0;
    background: #444;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    transition: top 0.5s ease;
    z-index: 3000;
}
.menuBar.show {
    top: 0;
}
.menuBar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 1003;
}
.one {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
form {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    color: white;
    z-index: 2000;
}
input, textarea, button {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}
#submit {
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}
button:hover {
    background: #555;
}
.join {
    display: flex;
    flex-direction: column;
}
.com {
    color: white;
    text-align: center;
    margin-top: 20px;
    z-index: 2000;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}
