html, body {
    min-height: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: rgb(250, 185, 245);
}

* {
    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(255, 255, 255);
}

li a:active, li a:hover {
    color: rgb(249, 228, 0);
}

.collage {
    width: 100%;
    max-height: auto;
}

/* CSS para Seccion Galeria */

h1 {
    color: rgb(249, 228, 0);
    font-family: 'Mansalva', cursive;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

/* Grid de Fotos */

/* .gallery{
    padding-top: 90px;
} */

.galeria {
    height: auto;
    background-color:  rgb(250, 185, 245);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cabecera {
    text-align: center;
}

.grid-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

/* 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: 80px;
    }

}

/* 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: 100px;
    }

}

/* 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: 130px;
    }

}