@media (max-width: 480px) {
    * {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
section {
    width: 100vw;
    height: auto;
}
header {
    width: 100vw;
    height: 50px;
    position: sticky;
    top: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 0 10px rgb(0, 0, 0.3);
}
menu {
    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;
}
.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: 1000;
}
.menuBar.show {
    top: 0;
}
.menuBar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
.close {
    position: absolute;
    right: 5px;
    top: 0;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
#one {
    width: 100vw;
    height: 500px;
    margin-top: 20px;
    margin-left: auto;
    background-image: url(giovanni/one.jpg);
    background-size: cover;
    background-position: center;
}
 .two {
    width: 100vw;
    height: auto;
    margin-top: 10px;
    display: flex;
    justify-content: center;
 }
 .three {
    width: 60vw;
    height: 500px;
    margin-top: 10px;
 }
 .four{
    width: 40vw;
    height: 500px;
    margin-top: 10px;
 }
 .six {
    border: none;
    width: 55vw;
    height: 200px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 10px;
    background-image: url(giovanni/logo.jpg);
    background-size: cover;
    background-position: top;
    box-shadow: 0 5px 5px rgb(0, 0, 0.3);
 }
 .five {
    width: 55vw;
    height: 287px;
    margin-left: 10px;
 }
 .seven {
    border: none;
    width: 35vw;
    height: 200px;
    margin-left: 10px;
    border-radius: 10px;
    background-image: url(giovanni/two.jpg);
    background-size: cover;
    background-position: top;
    box-shadow: 0 5px 5px rgb(0, 0, 0.3);
 }
 .eight {
    border: none;
    width: 35vw;
    height: 187px;
    margin-top: 10px;
    margin-left: 10px;
    border-radius: 10px;
    background-image: url(giovanni/three.jpg);
    background-size: cover; 
    background-position: top;
    box-shadow: 0 5px 5px rgb(0, 0, 0.3);
 }
 #nine {
    border: 1px solid black;
    width: 100px;
    height: 40px;
    margin-top: 30px;
    margin-left: 20px;
 }
 p {
    font-style: italic;
    font-weight: bold;
    color: #000000;
 }
 .name {
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
 }
button {
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgb(0, 0, 0.3);
    cursor: pointer;
}
.ten {
    /* border: 1px solid black; */
    width: 100vw;
    height: auto;
    margin-top: 10px;
    background-color: whitesmoke;
    text-align: center;
}
.contact {
    text-align: center;
    margin-top: 10px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
}
}