@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

*{
    background-color: rgb(186, 232, 253);
}
body{
    display: flex;
    flex-direction: column;
}
.cabecera{
    font-family: 'Quicksand', sans-serif;
    color: hotpink;
    text-align: center;
}

/*Texto*/
h1{
    font-family: 'Libre Franklin', sans-serif;
    color: black;
    background-color: rgb(255, 200, 228);
    margin-right: 4%;
}

p{
    font-family: 'Quicksand', sans-serif;
    color: black;
    background-color: rgb(255, 200, 228);
    margin-right: 2%;
}

/*Estilos del menú*/
span{
    font-family: 'Libre Franklin', sans-serif;
    color: black;
}

li{
    font-family: 'Quicksand', sans-serif;
    color: black;
    text-decoration: none;
    background-color: rgb(190, 188, 188);
    list-style-type: none;
    padding: none;
}

a{
    background-color: rgb(190, 188, 188);
    color: black;
    text-decoration: none;
}


nav{
    width: 300px;
    background: rgb(186, 232, 253);
    margin: 40px auto;
}

span{
    padding: 30px;
    background:rgb(255, 200, 228);
    color: black;
    font-size: 1.5em;
    font-variant: small-caps;
    cursor: pointer;
    display: block;
}

span::after{
    float: right;
    right: 10%;
    content: "+";
}

.slide{
    clear: both;
    width: 100%;
    height: 0px;
    overflow: hidden;
    text-align: center;
    transition: height .4s ease;
}

.slide li{
    padding: 20px;
}

#touch{
    position: absolute;
    opacity: 0;
    height: 0;
}

#touch:checked + .slide{
    height: 300px;
}

.seccion1{
    background-color: rgb(255, 200, 228);
    text-align: right;
    margin-top: 5%;
}

/*Estilos del boton de arriba*/
.arriba{
    font-family: 'Quicksand', sans-serif;
    font-weight: 900;
    font-size: 12px;
    color: hotpink;
    display: flex;
    align-items: flex-end;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgb(186, 232, 253);
    border-color: hotpink;
    border-width: 2px;
    border-style: solid;
}

.seccion2{
    background-color: rgb(255, 200, 228);
    text-align: right;
    margin-top: 5%;
}

.seccion3{
    background-color: rgb(255, 200, 228);
    text-align: right;
    margin-top: 5%;
}

.seccion4{
    background-color: rgb(255, 200, 228);
    text-align: right;
    margin-top: 5%;
}


/*Fotos*/
#fotopresentacion{
    width: 20vw;
    display: block;
    margin-left: 5%;
    margin-bottom: 5%;
}

#fotofuturo{
    width: 25vw;
    display: block;
    margin-left: 10%;
    margin-bottom: 2%;
}

.fotosobremi{
    width: 5vw;
    background-color: rgb(255, 200, 228);
    margin-bottom: 5%;
    margin-top: 5%;
}

.contenedor{
    background-color: rgb(255, 200, 228);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}


/*Galeria*/
.galeria{
    background-color: rgb(255, 200, 228);
}

.fotosdegaleria{
    border: 3px solid hotpink;
    max-width: 1014px;
    margin: auto;
    background-color: rgb(255, 200, 228);
}

.fotosdegaleria{
    padding: 2px;
    padding: 0.4vw;
    font-size: 0;
    flex-wrap: wrap;
    flex-direction: column;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    display: flex;
}

.fotosdegaleria div{
    -webkit-box-flex: auto;
    flex: auto;
    width: 200px;
    margin: 0.5vw;
}

.fotosdegaleria div img{
    width: 100%;
    height: auto;
}