*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;500&family=Sacramento&display=swap');

/*Logo y BarNav*/
.contenedor{
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0;
}

.hamburguer{
    position: fixed;
    top: 30px;
    right: 30px;
    background: white;
    width: 60px;
    height: 60px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.menu-navegacion{
    position: fixed;
    top: 0;
    padding: 30px;
    right: 0;
    width: 25vw;
    background-color: rgba(253, 151, 183, 0.729);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform .6s ease-in-out;
    transform: translate(110%);
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.spread{
    transform: translate(0%);
}

.listas{
    display: inline-block;
    font-size: 30px;
    padding: 6px;
}

.listas a{
    color: black;
    text-decoration: none;
    list-style: none;
    margin-left: 6px;
    font-family: Calistoga;
    font-size: 30px;
    width: max-content;
}

.listas:hover{
    color: white;
    background-color: #da6489;
    border-radius: 10px;
    padding: 10px;
}

/*Botón de arriba*/
#button-up{
    width: 60px;
    height: 60px;
    background: #da6489;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 50%;
    font-size: 50px;
    position: fixed;
    bottom: 0;
    right: 0;
    cursor: pointer;
    border: 4px solid transparent;
}

/*Titulo*/
.contenedor-header{
    height: 100vh;
    background-image: linear-gradient(to top, rgba(250, 208, 196, 0.447) 0%, rgba(255, 209, 255, 0.43) 100%), url(torta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title{
    font-size: 70px;
    color: white;
    background-color: #da6489;
    border-radius: 10px;
    padding: 10px;
}

.titulo{
    font-size: 200px;
}

.subtitulo{
    text-align: center;
    font-weight: 300;
    color: #da6489;
    margin-bottom: 40px;
    font-size: 100px;
    font-family: Niconne;
}

/* Galería */
.gallery{
    background-color: white;
}

.caja{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fotos{
    width: 30%;
    display: block;
    margin: 30px auto;
    box-shadow: 0 0 6px rgba(0, 0, 0, .5);
    cursor: pointer;
}

.guana{
    width: 60%;
    font-size: 50px;
    display: block;
    margin: auto;
}

.imagen-light{
    position: fixed;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(100%);
    transition: transform .2 ease-in-out;
}

.show{
    transform: translate(0);
}

.agregar-imagen{
    width: 40%;
    border-radius: 10px;
    transform: scale(0);
    transition: transform .3s .2s;
}

.showImage{
    transform: scale(1);
}

.close{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 60px;
    cursor: pointer;
}

/* Tamaño para dispositivos */
@media screen and (max-width: 700px){
    .menu-navegacion{
        width: 80vw;
    }

    .listas a{
        font-size: 20px;
    }

    .title{
        font-size: 30px;
        text-align: center;
    }

    .titulo{
        font-size: 40px;
        text-align: center;
    }

    .subtitulo{
        font-size: 50px;
    }

    .agregar-imagen{
        width: 90%;
    }

    .fotos{
        width: 45%;
        margin: 5px 1px;
    }

    .guana{
        width: 40%;
        font-size: 25px;
    }
}
