@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100&display=swap');

html, body{
    margin: 0;
    background: rgb(141, 171, 241);
/*    padding: 5px;*/
    box-sizing: border-box;
    color: black;
    width: 100vw;
    height: 100vh;
}

.cabecera{
    height: 10vh;
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-around;
    color: rgb(195, 231, 252);
z-index: 1000;
}

/* comienza estilo de boton */

.boton {
    padding: 12.5px 30px;
    border: 0;
    border-radius: 100px;
    background-color: #b7e0fc;
    color: #04274e;
    font-weight: Bold;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
  }
  
  button:hover {
    background-color: #b0defc;
    box-shadow: 0 0 20px #a1d6fa50;
    transform: scale(1.1);
  }
  
  button:active {
    background-color: #a1d7fa;
    transition: all 0.25s;
    -webkit-transition: all 0.25s;
    box-shadow: none;
    transform: scale(0.98);
  }

/* termina estilo de boton */

.principal{
    height: 80vh;
}

.pie_de_pagina {
    width: 100%;
    height: 5vh;
    background-color: white;
    position: fixed;
    bottom: 0;
    margin-left: 2px;
    margin-right: 2px;
}


    .presentacion {
        width: 100%;
        height: 95vh;
        background-color: rgb(220, 22, 22);
        padding-top: 10vh;
        text-align: center;
        font-size: 500%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    h1 {
        position:relative;
        font-family: sans-serif;
        color: #fff;
        font-weight: 600;
        /*text-transform: uppercase;*/
        font-size: 2em;
        letter-spacing: 4px;
        overflow: hidden;
        background: linear-gradient(90deg, #077ae6, #624efc, #841f95);
        background-repeat: no-repeat;
        background-size: 80%;
        animation: animate 3s linear infinite;
        -webkit-background-clip: text;
        -webkit-text-fill-color: rgba(255,255,255,.1);
      }

      @keyframes animate {
        0% {
          background-position: -500%;
        }
        100%{
          background-position: 500%;
        }
      }
    










.conociendome {
    width: 100%;
    height: fit-content;
    background-color: rgb(117, 184, 62);
   
}

.illia {
    width: 100%;
    height: 100%;
    background-color: rgb(12, 151, 86);
    

    
}


.futuro {
    width: 100%;
    height: 100%;
    background-color: rgb(80, 113, 117);
    padding-top: 10vh;
}


.foto_v {
    display: none;
}

.foto_h {
    display: none;

}

@media (orientation: landscape) {
    .foto_h{
        display:block;
        display: flex;
        margin: auto;
        width: 120vh;
        height: 70vh;
    }
}

@media (orientation: portrait) {
    .foto_v{
        display:block;
        display: flex;
        margin: auto;
        width: 45vh;
    }
}



.contactos{
    width: 100%;
    height: 100%;
    background-color: rgb(6, 204, 211);
}





/* comienzo de formato, para el contenido de CONOCIENDOME */

.titulo_seccion{
    font-size: 6vmin;
    font-family: 'Josefin Sans', sans-serif;
    font-family: 'Kanit', sans-serif;
    text-align: center;
    color: rgb(78, 47, 26);
    letter-spacing: 0.2em;
    text-shadow: 4px 4px 4px indigo;
    padding-top: 2.5%;
}

.preguntas{
    font-family: 'Caprasimo', cursive;
    font-size: 2.2vmin;
    text-align: center;
}

.respuestas{
    font-weight: bold;
}

.container {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 290px));
    grid-gap: 1rem;
    padding: 1rem;
    justify-content: center;
    box-shadow: 0 1px 1px #000;
  }
  img {
    background-position: top;
    background-size: cover;
    height: 200px;
    width: 290px;
    box-shadow: 0 2px 10px #000;
    cursor: pointer;
    transition: all 0.2s;
  }
  img:hover {
    box-shadow: none;
    transform: scale(1.1);
  }
  
  
  