html, body {
    min-height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
}

* {
    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(249, 228, 0);
}

img {
    width: 100%;
}

footer{
    height: 70vh;    
}

/* CSS para Seccion Tienda */

h1 {
    color: rgb(249, 228, 0);
    font-family: 'Mansalva', cursive;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
} 

h2 {
    color: rgb(249, 228, 0);
    font-family: 'Sono', monospace;
    text-align: center;
}

.tienda {
    height: 200vh;
    background-color: rgb(142, 216, 255);
    background-image: url(../imagenes/tienda.jpg); 
    /* background-position: top; 
    background-size: center; */
    background-repeat: no-repeat;
    /* background-size: content; */
    background-position: top;
    background-size: cover;
    background-attachment: cover;
}


.tienda-contenedor{
    width: 80%;
    /* height: 120vh; */
    height: 1900px;
    margin: 0 auto;
    padding-top: 350px;
}

.tienda-fichas{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 40px;
    padding-top: 250px;
}

.contenido-tienda {
    width: auto;
    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;
        }
    h1 {
        font-size: 60px;    
    }
    h2 {
        font-size: 15px;    
    }    
    .contenido-tienda {
        flex: 80%;
        max-width: 50%;
    }
    .tienda {
        height: 230vh;
        background-repeat: cover;
        background-size: cover;
    } 
}

/* Diseno para tabletas */ 
@media screen and (min-width: 800px) {
    body {
    		font-size:90%;
    	}
    nav ul li{
        display: inline-block;  
        font-size: 20px;    
        } 
    h1 {
        font-size: 80px;    
    }
    h2 {
        font-size: 20px;    
    }
    .contenido-tienda {
        flex: 80%;
        max-width: 80%;
    } 
    .tienda {
        height: 300vh;
        background-repeat: cover;
        background-size: cover;
    }       
}

/* Diseno para PC */ 
@media screen and (min-width: 1025px) {
    body  {
        font-size: 100%;
        }
    nav ul li{
        display: inline-block;  
        font-size: 25px;    
        }
    h1 {
        font-size: 100px;    
    }
    h2 {
        font-size: 25px;    
    }
    .contenido-tienda {
        flex: 40%;
        max-width: 40%;
    }    
    .tienda {
        height: 200vh;
        background-repeat: cover;
        background-size: cover;
    }   
}


