html, body {
    min-height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(208, 249, 191);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.skeep {
    max-width: 120px;
    max-height: auto;
    position: absolute;
    top: 8px;
    left: 16px    
}

.menu {
    height: auto;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 100;
    padding-left: 30px;
    padding-right: 30px;
}

a {
    text-decoration: none;
}

nav {
    text-align: right;
    width: 100%;
    padding-top: 30px;
}


nav ul{
    float: right;
    margin-right: 20px;
    list-style: none;
}

nav ul li{
    margin-right: 20px;
    font-size: 25px;
    font-family: 'Mansalva', cursive;
}

nav ul li a {
    color: rgb(0, 0, 0);
}

li a:active, li a:hover {
    color: rgb(1, 194, 173);
}

img {
    width: 100%;
}

footer{
    height: 70vh;    
}

/* CSS para Seccion Musica */

.titulo{
    width: 40%;
    color: rgb(0, 0, 0);
    font-family: 'Mansalva', cursive;
    font-weight: 500;
    text-align: center;
    background-color: white;
    border: solid 7px; color: rgb(255, 57, 90); 
    border-radius: 40px;
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 50px;
    margin-top: 80px;
    align-items: top;
}

h2{
    height: auto;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: 'Sono', monospace;
    font-weight: 600;
    padding-top: 20px;
}

.musica {
    width: 100%;
    height: 200vh;
    background-image: url(../imagenes/musica.png); 
    background-position: top; 
    background-size: cover;
    background-repeat: repeat;
}

.musica-contenedor{
    width: 80%;
    height: 200vh;
    margin: 0 auto;
    padding-top: 250px;
    
}

.musica-fichas{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* align-items: center; */
    align-items: top;
    flex-direction: row;
    gap: 40px;
}

.contenido-musica {
    height: auto;
}

/* CSS para Responsive Pages*/


/* Diseno para celulares */
@media screen and (min-width: 480px) {
    body {
    		font-size:80%;
    	}
    nav ul li{
        display: flex;
        font-size: 15px; 
        }
    .titulo {
        font-size: 30px;    
    }
    h2 {
        font-size: 15px;    
    }    
    .contenido-musica {
        flex: 50%;
        max-width: 50%;
    }
    .musica {
        height: 250vh;
        background-size: contain;
        background-repeat: repeat;
    }
}

/* Diseno para tabletas */ 
@media screen and (min-width: 800px) {
    body {
    		font-size:90%;
    	}
    nav ul li{
        display: inline-block;
        font-size: 20px;      
        } 
    .titulo {
        font-size: 60px;    
    }
    h2 {
        font-size: 20px;    
    }
    .contenido-musica {
        flex: 50%;
        max-width: 50%;
    } 
    .musica {
        height: 250vh;
        background-size: contain;
        background-repeat: repeat;
    }       
}

/* Diseno para PC */ 
@media screen and (min-width: 1025px) {
    body  {
        font-size: 100%;
        }
    nav ul li{
        display: inline-block;    
        font-size: 25px;  
        }
    .titulo {
        font-size: 80px;    
    }
    h2 {
        font-size: 25px;    
    }
    .contenido-musica {
        flex: 30%;
        max-width: 30%;
    }       
}


