@import url('https://fonts.googleapis.com/css2?family=Rubik+Moonrocks&display=swap');
/*fuentes*/
*{
    background-color:lightpink;
    color:rgb(90, 0, 50);
    font-family:'Courier New', Courier, monospace;
    margin: 0;
}
.titulo{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif ;
    font-size: 11vmin;
    color: rgb(255, 23, 205);
    background-color:rgb(240, 168, 210) ;
}
/*formato cabecera*/
.cabecera{
    width: 100vw;
    min-height: 10vh;
    background-color: rgb(255, 78, 187);
    color:rgb(124, 6, 99);
    position: fixed;
    top:0vh;
    z-index: 105;
}
.botonera{
    display: flex;
  	flex-wrap: wrap;
    
    justify-content: space-between;
    min-height: 10vh;
    
}
.myButton {
	background-color:#44c767;
	border-radius:28px;
	border:1px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
	background-color:#5cbf2a;
}
.myButton:active {
	position:relative;
	top:1px;
}

.instagram {
	box-shadow:inset 0px 1px 0px 0px #7a8eb9;
	background:linear-gradient(to bottom, #637aad 5%, #5972a7 100%);
	background-color:#637aad;
	border:1px solid #314179;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	padding:6px 12px;
	text-decoration:none;
}
.redes:hover {
	background:linear-gradient(to bottom, #5972a7 5%, #637aad 100%);
	background-color:#5972a7;
}
.redes:active {
	position:relative;
	top:1px;
}
.snapchat {
	box-shadow:inset 0px 1px 0px 0px #7a8eb9;
	background:linear-gradient(to bottom, #637aad 5%, #5972a7 100%);
	background-color:#637aad;
	border:1px solid #314179;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:13px;
	font-weight:bold;
	padding:6px 12px;
	text-decoration:none;
}
.redes:hover {
	background:linear-gradient(to bottom, #5972a7 5%, #637aad 100%);
	background-color:#5972a7;
}
.redes:active {
	position:relative;
	top:1px;
}

            
.piedepagina{
    width: 100vw;
    height: 5vh;
    background-color: rgb(255, 78, 187);
    color:rgb(124, 6, 99);
    position: fixed;
    bottom: 0vh;
}
.contenido{
    width: 90vw;
    margin: auto;
    padding-top: 10vh;
    /*display flex*/
    display: flex;
    flex-direction: column;
}
/*clase generica*/
.seccion{
    width: 100%;
    min-height: 80vh;
    padding-top: 12.5vh;
}
.presentacion{
    background-color: rgb(255, 179, 201);

    /*titulo centrado*/
    display: flex;
    align-items: center;
    justify-content: center;

}
.cuestionario{ 
    
    background-size: contain;
    background-color: transparent;
   
}
.pregunta{ 
    background-color: rgb(255, 160, 215);
    font-family: 'Rubik Moonrocks', cursive;
    
}
.respuesta{
    background-image: url("../img/fondorosa.jpg");
}
.illia{
    background-color: rgb(235, 85, 235);
    
}
.preferencias{
    background-color: rgb(197, 12, 197);
}
.futuro{
    background-color:darkmagenta;
}
/* Ocultar o mostrar en capas segun el viewport*/
.collage_v, .collage_h{ /*Clases*/
    /* se ocultan las dos para luego mostrar la que corresponda*/
    display: none;
    width: 90%;
    margin: auto;
}
/* Las dos imagenes dentro de las capas*/
.collage_v img{
    width: 100%;
}
.collage_h img{
    width: 100%;
}
/* Especificamente mostrar la capa que corresponda*/
/* Si el dispositivo es horizontal*/
@media (orientation:landscape){
    /* En caso de ser, se hace visible la capa*/
    .collage_h{
        display: block;
    }
}
@media (orientation:portrait){
    /* En caso de ser, se hace visible la capa*/
    .collage_v{
        display: block;}
        
}
/* seccion me gusta y no me gusta */
.wrap {
    overflow: hidden;
    margin: 10px;
  }
  .box {
    float: left;
    position: relative;
    width: 20%;
    padding-bottom: 20%;
  }
  .boxInner {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    overflow: hidden;
  }
  .boxInner img {
    width: 100%;
  }
  .boxInner .titleBox {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: -50px;
    background: #fff;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 10px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  section.no-touch .boxInner:hover .titleBox, section.touch .boxInner.touchFocus .titleBox {
    margin-bottom: 0;
  }
  @media only screen and (max-width : 480px) {
    /* Smartphone view: 1 tile */
    .box {
      width: 100%;
      padding-bottom: 100%;
    }
  }
  @media only screen and (max-width : 650px) and (min-width : 481px) {
    /* Tablet view: 2 tiles */
    .box {
      width: 50%;
      padding-bottom: 50%;
    }
  }
  @media only screen and (max-width : 1050px) and (min-width : 651px) {
    /* Small desktop / ipad view: 3 tiles */
    .box {
      width: 33.3%;
      padding-bottom: 33.3%;
    }
  }
  @media only screen and (max-width : 1290px) and (min-width : 1051px) {
    /* Medium desktop: 4 tiles */
    .box {
      width: 25%;
      padding-bottom: 25%;
    }
  }
