body {
    margin: 0;
    background: #FFFFFF;
    overflow-x: hidden;
    overflow-y: scroll;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-img {
    margin-left: 80px;
    height: auto;
    width: auto;
}

.sinistra,
.destra {
    flex: 1;
}
a{
    color: #292929;
}
.nav-list {
    display: flex;
    list-style-type: none;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    font-style: normal;
    gap: 150px;
    margin-top: 80px;

}

@media (max-width: 780px) {

    .logo-img {
        margin-left: 20px;
        height: 2rem;
        width: auto;
    }

    nav {
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .nav-list {
        font-weight: 200;
        font-size: 1.2rem;
        font-style: normal;
        gap: 30px;
        margin-top: 27px;
        margin-right: 30px;

    }

    .sinistra,
    .destra {
        flex: none;
    }

}

/* NUOVA SEZZIONE MAIN */

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15rem;
}

.maps {
    margin-top: 8rem;
    align-items: center;
    display: flex;
    flex-direction: column;
}

iframe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

a {
    text-decoration: none;
}

button {
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 20px;
    font-family: "Bebas Neue", sans-serif;
    width: 325px;
    height: 50px;
    border: none;
    font-weight: bold;
    background: #D95D39;
    text-align: center;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: solid;

}

button:hover {
    background: #F4A300(47, 0, 255);
    color: rgb(230, 230, 230);
    transition: transition 0.5s;
}

@media (max-width: 780px) {
    video {
        width: 344px;
        height: 380px;
    }

    main {
        margin-top: 7.5rem;
    }

    iframe {
        width: 344px;
        height: 380px;
    }
}

/* NUOVA SEZZIONE FOOTER */
footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    color: #FFFFFF;
    background-color: #292929;
}

.created {
    margin-top: 15px;
    margin: 0;
    margin-left: 15px;
}

.col-2,
.col-3 {
    margin-top: 40px;
}

.col-2 {
    display: flex;
    flex-direction: column;
}

@media (max-width: 780px) {
    footer {
        font-size: 1rem;
    }

    .col-2,
    .col-3,
    .col-1{
        margin-top: 20px;
    }
    .created {
        margin-left: 11px;
    }
}