/* parametros iniciales */
* {
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: rgb(173, 231, 79);
  }
  .general {
    width: 100vw;
    min-height: 100vh;
  }
  .cabecera {
    width: 100%;
    height: 15%;
    background-color: rgb(3, 31, 18);
    position: fixed;
    top: 0;
    z-index: 3;

  }
  .pie_de_pagina {
    width: 100%;
    height: 5%;
    background-color: rgb(52, 124, 30);
    position: fixed;
    bottom: 0%;

  }
  
  .principal {
    width: 90%;
    margin: auto;
    margin-top: 10vh;
    margin-bottom: 5vh;
    height: 85vh;

    display: flex;
    flex-direction: column;
  }
  
  .presentacion {
    width: 100%;
    min-height: 80vh;
    background-color: rgb(54, 208, 105);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
  .titulo_principal {
    font-size: 150%;
    font-family: "Indie Flower", cursive;
    text-align: center;

  }
  .subtitulo{
    text-align: center;
    margin-top: 0px;
    width: 100%;
  }
  #conociendome {
    width: 100%;
    min-height: 80vh;
    background-color: rgb(60, 163, 158);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 15vh;
    padding-bottom: 10vh;
  }
  #paso_por_el_illia {
    width: 100%;
    min-height: 80vh;
    background-color: rgb(28, 189, 217);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding-top: 7%;
  }
  #futuro {
    width: 100%;
    min-height: 80vh;
    background-color: rgb(14, 52, 101);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #contactos {
    width: 100%;
    min-height: 80vh;
    background-color: rgb(48, 59, 219);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .botonera {
    position:fixed;
    top: 5vh;
    left: 25vw;
    display: flex;
    justify-content: space-between;
    z-index: 4;
  }
  .botonera button {
    text-decoration: none;
    border: none;
    margin: 5px;
    cursor: pointer;
    font-family: "Jost", sans-serif;
    font-weight: bold;
    font-size: 1.5vw;
    color: rgb(0, 0, 0);
    background-color:rgb(216, 219, 27);
    border-radius: 3%;
   
    
  }
  button:hover {
    background-color:#ecf015; 
    color: #ffffff; 
    transform: scale(1.05); 
    transition: transform 0.5s ease; 
  
  }
  .preguntas{
    font-size: 3vh;
    font-family:'Indie Flower', cursive;
    text-align: left;
    font-weight: bold;
  
  }
  .respuesta{
    font-size: 3vh;
    font-family: 'Jost', sans-serif;
    text-align: left;
    
  }
  
  .container {
    background-color: rgb(106, 110, 142);
    border-radius: 15px;
    padding: 10px; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 100%;
  
  }
  .container02 {
    background-color:  rgb(46, 184, 177);
    border-radius: 15px;
    padding: 10px; 
    display:flex;
    align-items: center; 
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .container03{
    background-color:  rgb(106, 142, 128);
    border-radius: 15px;
  }
  .fotos{
    height: 28vh;
    border-radius: 5%;
    display:row;
    margin-bottom: 10px;
   
  }
  .fotos:hover {
    transform: scale(1.05); 
    transition: transform 0.5s ease; 
  }
  .iconos{
    width: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    margin-left: 5%;
  }
  .texto_futuro{
    font-size: 150%;
    font-family: 'Jost', sans-serif;
    text-align: left;
    font-weight: bold;
    color: black;
  }
  .foto_presentacion{
    height: 70vh;
    border-radius: 5%;
    margin-left: 5%;
  }
  section h2 {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-family: "Indie Flower", cursive;
    text-align: center;
  }
