
@import url('https://fonts.googleapis.com/css2?family=Ysabeau+SC:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@1,200&display=swap');
@import url(https://fonts.googleapis.com/css?family=Montserrat);

*{
  /*margin: 0;
  padding: 0;*/
  box-sizing: border-box;
    
}

body{
    /* Tamaño de la ventana */
    width: 100vw;
    min-height: 100vh;
    background-color: #ffe863ec;
}

.cabecera{
    /* ancho y alto */
    width: 100vw;
    height: 10vh;
    text-align: center;
    background-color: #ffe863ec;
    /* para fijar cabecera */
    position: fixed;
    top:0;
    z-index: 1;
}


.botones{
    background-color: #ffe863ec;
    border: 10px;
    border-color: #ffe863ec;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 3vh;
}

button {
    --border-radius: 15px;
    --border-width: 4px;
    appearance: none;
    position: relative;
    padding: 1em 2em;
    border: 0;
    background-color: #ffe863ec;
    font-family: "Roboto", Arial, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color:BLACK;
    z-index: 2;
   }
   
   button::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background-image: conic-gradient(
       #488cfb,
       #29dbbc,
       #ddf505,
       #ff9f0e,
       #e440bb,
       #655adc,
       #488cfb
     );
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    mask-clip: var(--m-o); 
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 500ms infinite;
    animation-play-state: paused;
   }
   
   button:hover::after {
    animation-play-state: running;
   }
   
   @keyframes rotate-hue {
    to {
     filter: hue-rotate(1turn);
    }
   }
   
   button,
   button::after {
    box-sizing: border-box;
   }
   
   button:active {
    border-width: 5px;
   }



.pie{
     /*ancho y altura*/
     width: 100vw;
     height: 5vh;

     background-color: #ffe863ec;
 
     /* fijar cabecera */
     position: fixed;
     bottom: 0;

}

/* sección principal */
.principal{
    width: 90vw;
    height: 80vh;
    margin: auto;
    margin-bottom: 3vh;
    min-height: 87vh;
    background-color: rgb(255, 250, 115);
    display: flex;
    flex-direction: column;
    padding-top: 10vh;
    /* padding-top: 10%; */
}

.presentacion{
    width: 90vw;
    height: 80vh;
    min-height: 87vh;
    display: flex;
    justify-content: center;
    align-items: center; 
    background-color: #ffac37;

    font-family: 'Kanit', sans-serif;
    font-size: 5vmax;
    color:rgb(133, 39, 39) ;
    text-align: center;
    
}

.container {
  display: flex;
  border:1px solid red; 
  height: 100%;
  width: 100%;
  align-items: center;
}

svg {
    display: block;
    font: 20vmin 'Montserrat';
    width: 80%;
    height: 30%;
    margin: 0 auto;
}

.text-copy {
    fill: none;
    stroke: rgb(255, 250, 250);
    stroke-dasharray: 6% 29%;
    stroke-width: 5px;
    stroke-dashoffset: 0%;
    animation: stroke-offset 5.5s infinite linear;
}

.text-copy:nth-child(1){
	stroke: #4D163D;
	animation-delay: -1;
}

.text-copy:nth-child(2){
	stroke: #840037;
	animation-delay: -2s;
}

.text-copy:nth-child(3){
	stroke: #BD0034;
	animation-delay: -3s;
}

.text-copy:nth-child(4){
	stroke: #BD0034;
	animation-delay: -4s;
}

.text-copy:nth-child(5){
	stroke: #f00c0c;
	animation-delay: -5s;
}

@keyframes stroke-offset{
	100% {stroke-dashoffset: -35%;}
}


.conociendome{
    width: 90vw;
    height: 80vh;
    min-height: 87vh;
    background-color: rgb(255, 250, 115);
    padding: 1vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
}

.tits2{
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 6vmax;
    color:rgb(133, 39, 39) ;
    text-align: center;
}
.preguntas {
    display:flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    gap: 10px;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 2,5vmin;
    color:black ;
}

.primercolumna
{
    height: 90%;
    width: 50%;
    text-align: justify;
}

.segundacolumna {
    height: 90%;
    width: 50%;  
    text-align: justify;
}


.pasoporelIllia{
    width: 90vw;
    height: fit-content;
    /* min-height: 87vh; */
    background-color:#ffac37; 

    font-family: 'Ysabeau SC', sans-serif;
    font-size: 6vmax;
    color:rgb(133, 39, 39) ;
    text-align: center;
}


.galeria {
    overflow: hidden;
    margin: 10px;
    z-index: 10;
  }
  .box {
    float: left;
    position: relative;
    margin-left: 2.5%;
    width: 30%;
    padding-bottom: 20%;
  }
  .boxInner {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    overflow: hidden;
    height: 80% ;
  }
  .boxInner img {
    width: 100%;
  }
  .boxInner .titleBox {
    position: absolute;
    height: 25% ;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0px; 
    background: #fff;
    background: rgba(0, 0, 0, 0.5);
    color: #FFF;
    padding: 10px;
    text-align: center;
    font-family: 'Ysabeau SC', sans-serif;
    font-size: 4vmin;
    /*TRANSICIONES*/
    -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%;
    }
  }



.viendoelfuturo{
    background-color: rgb(255, 250, 115);
    width: 90vw;
    height: fit-content; /* cambiar */
    /* min-height: 87vh; */

    font-family: 'Ysabeau SC', sans-serif;
    font-size: 6vmax;
    color:rgb(133, 39, 39) ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    
}

.edith {
  display: none;
  width: 55%;
  height: auto;
  margin: 2vh;
}


.editv {
  display: none;
  width: 55%;
  height: auto;
  margin:2vh;
}

@media (orientation:landscape) 
{
  .edith{
    display: block;
  }

}

@media (orientation:portrait) 
{
  .editv{
    display: block;
  }
} 

.contactos{
    background-color: #ffac37;
    width: 90vw;
    height: 80vh;
    min-height: 87vh;

    font-family: 'Ysabeau SC', sans-serif;
    font-size: 6vmax;
    color:rgb(133, 39, 39) ;
    text-align: center;
}

.redes{
  flex-direction: row;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
}

.ig1{
  width: 10%;
  height: auto;
  vertical-align: center;
  margin-right: 5%;
}

.ig2{
  width: 10%;
  height: auto;
  vertical-align: center;
  margin-left: 5%;
}