/* parametrso iniciales*/
@import url('https://fonts.googleapis.com/css2?family=Pangolin&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Englebert&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@500&display=swap')


*{
  padding: 0;
}

body{
    /* Tamaño de la ventana */
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: crimson;
  display: flex;
}

.cabecera{
    /* ancho y alto */
  width: 100vw;
  height: 10vh;
  text-align: center;
  background-color: rgb(245, 221, 187);
    /* para fijar cabecera */
  position: fixed;
  z-index: 1;
  top:0;
}

.botonera{    
    padding-right: 2vw;
    padding-left: 2vw;
    padding-top: 1vh;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.pie_pagina{
     /*ancho y altura*/
     width: 100vw;
     height: 5vh;
     background-color: crimson;
     /* fijar pie de pagina*/
     position: fixed;
     bottom: 0;
}

/* formato al contenido */
/* sección principal */
/* dar tamño a cada una de las secciones
100% de anho 
100% de alto
color diferente de fondo */

#presentacion{
    /* tamaño, ancho y altura*/
    color: rgb(172, 88, 105);
    background-color: rgb(28, 148, 108);
    width: 100vw;
    height: 80vh;/* altura disponible */
    padding-top: 10vh;/* espacio que ocupa la cabecera */
    padding-bottom: 5vh;/* espacio que ocupa el pie de pagina */

}

.titulo_presentacion{
     /* formato del titulo*/
    font-family: 'Pangolin', cursive;
    font-size: 195px;
    color:rgb(161, 128, 147) ;
    text-align: center;
    position: relative;
    display: inline-block;
    animation: titleEffect 5s ease-in-out infinite;
    
}

@keyframes titleEffect {
    0% {
      color: #ff6699;
      transform: translateX(0);
    }
    25% {
      color: #ff3366;
      transform: translateX(10px) rotateZ(5deg);
    }
    50% {
      color: #74a7c1;
      transform: translateX(0);
    }
    100% {
      color: #ff6699;
      transform: translateX(0);
    }
  }
  
  .titulo_presentacion::before {
    position: absolute;
    top: 50%;
    left: -10px;
    width: 20px;
    height: 2px;
    background-color: #ff6699;
    transform: translateY(-50%);
    animation: beforeEffect 2s ease-in-out infinite;
  }
  
  .titulo_presentacion::after {
    position: absolute;
    top: 50%;
    right: -10px;
    width: 20px;
    height: 2px;
    background-color: #ff6699;
    transform: translateY(-50%);
    animation: afterEffect 60s ease-in-out infinite;
  }
  
  @keyframes beforeEffect {
    0% {
      transform: translateY(-50%) rotate(0deg);
    }
    50% {
      transform: translateY(-50%) rotate(180deg);
    }
    100% {
      transform: translateY(-50%) rotate(360deg);
    }
  }
  
  @keyframes afterEffect {
    0% {
      transform: translateY(-50%) rotate(0deg);
    }
    50% {
      transform: translateY(-50%) rotate(-180deg);
    }
    100% {
      transform: translateY(-50%) rotate(-360deg);
    }
  }


#conociendome{
    /* tamaño, ancho y altura*/
    background-color: rgb(7, 7, 66);
    width: 100vw;
    height: 80vh;/* altura disponible */
    padding-top: 10vh;/* espacio que ocupa la cabecera */
    padding-bottom: 5vh;/* espacio que ocupa el pie de pagina */
    
}

#titulo_conociendome{
  /*formato de subtitulos*/
  font-size: 50px;
  font-family: 'Pangolin', cursive;
  text-align: center;
  color: beige;  
}

#illia{
    /* tamaño, ancho y altura*/
  background-color:#b45682;
  padding-top: 10vh;
  height: 90vh;/* altura disponible */
  width: 100vw;
     
}

#titulo_illia{
  /*formato de subtitulos*/
  font-size: 50px;
  font-family: 'Pangolin', cursive;
  text-align: center;
  color: beige;
}


#futuro{
    background-color: #6d3154;
    /* tamaño, ancho y altura*/
    padding-top: 10vh;
    width: 100%;
    min-height: 85vh;/* altura disponible */
    
}

#titulo_futuro{
    /*formato de subtitulos*/
    font-size: 50px;
    font-family: 'Pangolin', cursive;
    text-align: center;
    color: beige;
}

.futuroinfo{
  /*alto y ancho*/
     height: 50%;
     width: 70vw;
     align-items: center;
     margin: auto;
     display: flex;
     flex-direction: row;

 }
 
 #textofuturo{
 /*alto y ancho*/
     height: 50%;
     width: 45%;
 
 /*formato del texto*/
     font-size: 28px;
     font-family: 'Rubik', sans-serif;
     color: rgb(236, 236, 165);
     margin-left: 3em;
     margin-right: 1em;
 }
 
 .fotofuturo {
 /*alto y ancho*/
     width: 40%;
     height: 70%;
 }
 
 .fotofuturo img{
 /*ancho*/
     width: 100%;
 }   

#contactos{
    background-color: #27533a;
    /* tamaño, ancho y altura*/
    width: 100%;
    min-height: 87vh;/* altura disponible */
    padding-top: 10vh;
       
}
 
#titulo_contactos{
    /*formato de subtitulos*/
    font-size: 50px;
    font-family: 'Pangolin', cursive;
    text-align: center;
    color: beige;
    margin-bottom: 40px;
}

#miscontactos{
  width: 100vw;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.logo img{
  width: 130px;
  height: auto;
}