@import url('https://fonts.googleapis.com/css2? family= Playfair+Display:ital@1 & display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');

*{
    background-color: rgb(252, 210, 221);
    color: rgb(0, 0, 0);
    font-family: 'Truculentra', sans-serif;
    margin: 0;
}

.titulo{
    font-family: 'Playfair Display', serif;
    font-size: 15vh;
    color: rgb(194, 7, 94);
    text-align: center;
    background-color: transparent;
}

.cabecera{
    width: 100vw;
    height: 15vh;
    background-color: rgba(194, 7, 94, 0.699);
    color: rgb(0, 0, 0);
    position: fixed;
    top: 0vh;
    z-index: 100;
}

.botonera{
    height:100%;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    
}
.boton{
    text-decoration: none;
    border-radius: 3px;
    padding: 10px 8px;
    color: rgb(220, 20, 60);
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.pie{
    width: 100vw;
    height: 10vh;
    background-color: rgba(194, 7, 94, 0.699);
    color: rgb(0, 0, 0);
    position: fixed;
    bottom: 0vh;
    text-align: center;
    font-family: 'Nanum Gothic', sans-serif;
}

.contenido{
    width: 90vw;
    margin: auto;
    padding-top: 10vh;
    display: flex;
    flex-direction: column;
}

.seccion{
    width: 100%;
    min-height: 80vh;
    padding: 0;
    background-color:#b1e2ff;
    padding-top: 15vh;
}

.subtitulo{
    background-color: rgb(252, 210, 221);
    height: 10vh;
    font-family: 'Roboto Slab', serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cuestionario{
    font-family: 'Roboto Slab', serif;
    color: black;
    height: 10vh;
    background-color: transparent;
    font-weight: bold;
    text-align: center;
}

.respuesta{
    font-family: 'Roboto Slab', serif;
    color: red;
    height: 10vh;
    background-color: #b1e2ff;
    font-weight: bold;
    text-decoration: underline;
}

.bloques{
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: baseline;

}

.bloque{
    width: 30%;
    margin: 1.5%;
    margin-top: 5%;
    background-color: transparent;  
}

/* seccion futuro, muestra del collage*/

.collage_vertical, .collage_horizontal{
    display: none;
    width: 90%;
    margin: auto;

}

.collage_vertical  img{
    width: 100%;
}

.collage_horizontal img{
    width: 100%;
}

/* si el dispositivo es horizontal */

@media (orientation:landscape) {
    .collage_horizontal{
        display: block;
    }
}

/* si el dispositivo es vertical*/ 

@media (orientation:portrait) {
    .collage_vertical{
        display: block;
    }
}


.accesos{ 
    width: 70vw;
    height: 5vh;
    display: flex;
    margin-left: 15vw;
    background-color: transparent;
}

.red{
    width: 20%;
    background-color: transparent;
}

.red img{
    width: 20%;
    background-color: transparent;
}