
header ul li:nth-of-type(4) {
	text-decoration: overline;
}

.IconoDerecha {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 6%;
    right: 10%;
    background-color: white;
    animation: girar 3s linear infinite; /* animación rotación infinita */
    /*animation: pulso 1.5s ease-in-out infinite;*/ /* animación tipo latido "pulso" */
    /*animation: rebote 2s ease-in-out infinite;*/ /* animación rebote suave */
}

.IconoIzquierda {
    width: 50px;
    height: 50px;
    position: fixed;
    top: 6%;
    left: 14%;
    background-color: white;
    animation: girar 3s linear infinite; /* animación rotación infinita */
    /*animation: pulso 1.5s ease-in-out infinite;*/ /* animación tipo latido "pulso" */
    /*animation: rebote 2s ease-in-out infinite;*/ /* animación rebote suave */
}

/* rotación infinita*/
@keyframes girar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* animación tipo latido "pulso" */
/*@keyframes pulso {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}*/

/* animación rebote suave */
/*@keyframes rebote {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}*/

.IconoDerecha:hover {
  border-style: none;
  width: 50px;
  height: 50px;
}

.IconoIzquierda:hover {
  border-style: none;
  width: 50px;
  height: 50px;
}

main p {
    text-align: center;
    font-size: 24px;
    width: 75%;
    margin: auto;
}

#QuenoPare {
    margin: auto;
    width: 20%;
    display: block;
}

.TamanoMusica {
    display: flex;
    margin: auto;
    width: 75%;
    padding: 2%;
}

.TamanoMusica p {
    margin-bottom: 0%;
}

.Audios {
    border: 1px solid black;
    background-color: #DFD9D8;
    width: 75%;
    padding: 3%;
}

.Audios p {
    display: block;
    margin: 0 5px;
    width: auto;
}

.Titulos:last-of-type {
    padding-bottom: 3%;
}

.Negrita {
    font-weight: bold;
    font-size: 36px;
    padding-top: 2%;
    padding-left: 16%;
}

#Helen {
    margin: 2% 25%;
    width: 50%;
}

.Audios1 {
    width: 35%;
    padding: 3%;
	margin: 0 auto; /* centra horizontalmente */
	display: grid;
    place-items: center; /* centra en ambos ejes */
    text-align: center;
}

.Audios1 p {
    display: block;
    margin: 0;
    width: auto;
}

#Cinco {
	margin-bottom: 1% 0;
}

.Audios2 {
    width: 35%;
    padding: 3%;
	margin: 0 auto; /* centra horizontalmente */
	display: grid;
    place-items: center; /* centra en ambos ejes */
    text-align: center;
}

.Audios2 p {
    display: block;
    margin: 0;
    width: auto;
}

.Audios2 iframe {
    display: block;
    margin: 3% auto;
}

#Seis {
	margin-top: 1%;
}

#Espacio {
    padding-bottom: 2%;
}

/* --- MEDIA QUERIES --- */

/* Para tables */
@media (max-width: 768px) {
	main p {
        font-size: 20px;
        width: 85%;
    }

    #QuenoPare {
        margin: auto;
        width: 20%; /* 30% */
        display: block;
    }

    .TamanoMusica {
        flex-direction: column;
        width: 90%;
    }

    .Audios, .Audios1, .Audios2 {
        width: 90%;
        padding: 2%;
    }

    .Negrita {
        font-size: 28px;
    }

    #Helen {
        width: 70%;
    }

    .IconoDerecha {
        width: 40px;
        height: 40px;
        right: 5%;
    }

    .IconoIzquierda {
        width: 40px;
        height: 40px;
        left: 5%;
    }
}

/* Para móviles */
@media (max-width: 480px) {
	main p {
        margin: auto;
        width: 80%;
        font-size: 16px;
        text-align: justify;
        padding: 2% 6%;
        padding-left: 0%;
    }

    #QuenoPare {
        margin: auto;
        width: 30%;
        display: block;
    }

    .TamanoMusica {
        width: 95%;
        flex-direction: column;
        align-items: center;
        margin-top: 2%;
    }

    .TamanoMusica  {
        display: flex;
        margin: auto;
        padding-bottom: 2%;
        padding-left: 0%;
        margin-left: 3%;
    }

    .Audios {
        width: 95%;
        padding: 1.5%;
    }

    .Audios audio {
        width: 90%;
        margin: 3% 0;
        padding-left: 12%;
    }

    .Titulos p {
        text-align: center;
        padding: 0%;
        font-size: 18px;
    }

    .Interlineado p {
        margin-top: 0%;
        padding-top: 0%;
        padding-bottom: 2%;
    }

    .Negrita {
        font-size: 20px;
        margin-left: 10%;
    }

    #Helen {
        margin: auto;
        width: 90%;
        padding: auto;
        /* padding: 0 5% 3% 5%; */
        margin-top: 2%;
        margin-left: 5%
        /* padding-left: 2.5%; */
    }

    .IconoDerecha {
        margin: auto;
        width: 35px;
        height: 35px;
        padding: 0%;
        right: 20%;
    }

    .IconoIzquierda {
        width: 35px;
        height: 35px;
        left: 25%;
    }

    iframe {
        margin: auto;
        width: 95%;
        margin-top: 2%;
    } 
}
