@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Inconsolata:wght@600&family=Indie+Flower&family=Lobster&family=Merriweather:wght@300&family=Nanum+Myeongjo&family=Oleo+Script+Swash+Caps:wght@400;700&family=Roboto+Mono:wght@100;400&family=Rubik:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Inconsolata:wght@600&family=Indie+Flower&family=Lobster&family=Merriweather:wght@300&family=Nanum+Myeongjo&family=Oleo+Script+Swash+Caps:wght@400;700&family=Roboto+Mono:wght@100;400&family=Rubik:wght@400;500&display=swap');

*{
    background-color:rgb(240, 182, 237);
    color:rgb(0, 0, 0);
    font-family: 'Inconsolata', monospace;
    margin: 0;
    
}

.titulo{
    font-family: 'Dancing Script', cursive;
    font-size: 10vmin;
    color: rgb(245, 251, 255);
    background-color: inherit;
}

 /* Formato de cabecera */
 .cabecera{
     width: 100vw;
     height: 10vh;
     background-color:rgb(247, 186, 175);
     color:black;
     position: fixed;
     top: 0vh;
     z-index: 90;

 }

 .botonera{
     display: flex;
     justify-content: space-evenly;
     background-color: transparent;
 }



/* Diseño botones */

.myButton {
	box-shadow: 1px 0px 36px 2px #efdcfb;
	background-color:#dfbdfa;
	border-radius:30px;
	border:4px solid #c584f3;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:0.90rem;
	padding:10px 37px;
    text-align: center;
	text-decoration:none;
	text-shadow:0px 1px 8px #9752cc;
    
}
.myButton:hover {
	background-color:#bc80ea;
}
.myButton:active {
	position:relative;
	top:1px;
}



 /* propiedades del pie de página */

 .pie{
     width: 100vw;
     height: 10vh;
     background-color: rgb(247, 186, 175);
     color:black;
     position: fixed;
     bottom: 0vh;
 }

 /* contenedor principal */

 .contenido{
     width: 90vw;
     margin: auto;
     padding-top: 10vh;
     /* ahora el display flex */
    display: flex;
    flex-direction: column;
    }

    /* clase genérica */
    .seccion{
        width: 100%;
        min-height: 80vh;
        padding: 0;
        padding-top: 10vh;

    }

    /* cada una de ellas */
    .presentacion{
        background-color:rgb(137, 60, 139);
        /* para que el título quede centrado */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .preguntas{
        background-color: rgb(174, 94, 177);
    }

    .respuestas{
        /* para organizar contenido */
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        background-color: transparent;
        margin-top: 3%;

    }

   
/* Tamaño de imagen según la orientación */
 /* Si el dispositivo es horizontal */
 @media (orientation:landscape){
    /* Eb caso de ser, hace visible la capa */
    .respuestas img{
        width: 30%;
        height: auto;
    }

}
/* Si el dispositivo es vertical */
@media (orientation:portrait){
    /* Eb caso de ser, hace visible la capa */
    .respuestas img{
        width: 70%;
        height: auto;
    }

}



    .illia{
        background-color: rgb(184, 112, 187);
    }

    .preferencias{
        background-color: rgb(207, 138, 209);
        
        
    }
    .preferencias img{
        width: 70%;
        height: auto;
        margin-left: 15%;
        padding-top: 1%;
       background-color: transparent;
    }
    /* Para mostrar el collage */
    .futuro{
        background-color: rgb(221, 165, 223);
    }
    /* ocultar o mostrar capas según el viewport */

    .collage_v, .collage_h{/* ambas capas*/
        /* ocultamos ambas para despues mostrar la que corresponda */
        display: none;
        padding-top: 2%;

        width: 90%;
        margin: auto;
        background-color: transparent;
    }

    /* Las imágenes dentro de las capas*/
    .collage_v img{

        width: 100%;
    }

    .collage_h img{
        
        width: 100%;
    }

    /* Especificamente mostrar lo que corresponda */

    /* Si el dispositivo es horizontal */
    @media (orientation:landscape){
        /* Eb caso de ser, hace visible la capa */
        .collage_h{
            display: block;
        }
        
    }
    /* Si el dispositivo es vertical */
    @media (orientation:portrait){
        /* Eb caso de ser, hace visible la capa */
        .collage_v{
            display: block;
        }
    }

    .redes img{
        width: 2%;
        height: auto;
        background-color: transparent;
        width: 30px;

    }

    
