
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav{
    background-color: rgb(213, 136, 19);
    padding: 15px 0;
}

.menu{
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap; 
}

.menu li{
    margin: 10px 20px;
}

.menu a{
    text-decoration: none;
    color: rgb(248, 248, 248);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}

.menu a:hover{
    color: rgb(216, 96, 21);
}

header{
    background-image: url(../img/estudio\ musi.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header .musi{
    padding: 1em;
    text-align: center;
}

header section{
    background-color: blanchedalmond;
}

.musi{
    width: 50%;
    background-color: rgba(192, 190, 190, 0.681);
    margin: 0 auto;
    border-radius: 20px;
    padding: 15px;
}

.cante{
    display: grid;
    gap: 2em;
    grid-template-columns: 1fr 1fr;
}

.cante figure{
    background-color: rgba(168, 168, 168, 0.766);
    display: flex;
    gap: 1em;
    padding: 1em;
    border-radius: 15px;
}

.cante figure img{
    width: 35%;
    height: auto;
}

section{
    width: 80%;
    margin: 3em auto;
    box-shadow: 0px 0px 20px 2px rgb(164, 134, 24);
    padding: 2em;
    border-radius: 30px;
}

h2{
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
}

p{
    text-align: justify;
    line-height: 1.6;
}

.video-musi{
    width: 60%;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: center;
}

video{
    width: 100%;
    height: auto;
}


@media (max-width: 1025px){

    .musi{
        width: 70%;
    }

    .video-musi{
        width: 80%;
    }

    section{
        width: 90%;
    }
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.nota{
    animation: spin 3s linear infinite;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 500px){

    .menu{
        flex-direction: column;
        align-items: center;
    }

    .musi{
        width: 95%;
    }

    .video-musi{
        width: 100%;
        padding: 10px;
    }

    .cante{
        grid-template-columns: 1fr;
    }

    .cante figure{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cante figure img{
        width: 100%;
        max-width: 300px;
    }

    section{
        width: 95%;
        padding: 1em;
    }

    h1{
        font-size: 1.8rem;
    }

    h2{
        font-size: 1.3rem;
    }
}