@media (max-width: 699px) {
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
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);
    z-index: 3000;
}
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: 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;
}
#one {
    width: 100vw;
    height: 90vh;
    background-image: url(giovanni/logo.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 999;
    margin-top: 10px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6));
    z-index: 1000;
}
.story {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(255, 255, 255);
    text-align: center;
    z-index: 2000;
    font-weight: bold;
    font-size: 17px;
    padding: 10px;
}
h1 {
    border-bottom: 1px solid white;
}
p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.5;
}
.two {
    width: 100vw;
    height: auto;
    margin-top: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: whitesmoke;

}
.three {
    border: none;
    width: 70px;
    height: 40px;
    margin-top: 3px;
    border-radius: 5px;
      background-color: black;
    color: white;
    box-shadow: 0 0 5px rgb(0, 0, 0.3);
    cursor: pointer;
}
}