*{
    background-color: rgb(99, 171, 244);
    text-align: center;
    margin: 0;
    color: azure;
}


/* ---------------- Aca seteamos las propiedades del nombre con imagen de fondo en movimiento ------------------- */

.main-name{
    /* Centramos el contenido de la sección y determinamos el color de fondo */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgb(37, 129, 200);
}


.name{
    /* seteamos las propiedades del texto */
    font-size: 10vmax;
    text-align: center;
    color: rgba(255, 255, 255);
    text-shadow: 2px 2px 2px rgb(21, 45, 150);
   
}

.span-main-name{
    /* Establecemos la iamgen de fondo del texto */
   display: block;
   background: url('../img/fondonio.jpg');
   background-clip: text;
   -webkit-background-clip: text;
   -text-fill-color: transparent;
 
   -webkit-text-fill-color: transparent;
   
   /* Establecemos la animación */
    animation: fire 20s linear infinite;
 -webkit-animation: fire 20s linear infinite;
   backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
 
}

@keyframes fire {
    /* Definimos el paso a paso de la animación */
    0%{
         background-position: left 0 top 10px;
    }
    15%{
         background-position: left 500px top 5px;
    }
    30%{
         background-position: left 1000px top 0;
    }
    70%{
         background-position: left 2000px top -5px;
    }
    100%{
         background-position: left 3000px top 10px;
    }
}

/* Formato de Cabezera*/
.cabezera{
    width: 100vw;
    height: 10vh;
    position: fixed;
    top: 0vh;
    color: rgb(252, 248, 250);
    text-align: center;
    z-index: 40;
}


.titulo{
    font-size: 14vmin;
    color: rgb(56, 75, 152);
    background-color: inherit;
    text-shadow: 2px 2px 2px silver;
    text-align: center;
}

/*  BOTONERA*/
.Botonera{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1vh;
    color: hotpink;
    padding-right: 5vw;
    padding-left: 5vw;
    z-index: 40;
}


    /*Pie de pagina*/
    .pie{
    width: 100vw;
    height: 10vh;
    background-color: rgb(125, 160, 197);
    color: rgb(5, 4, 3);
    position:fixed;
    bottom: 0vh;
    text-align: center;
    }


    /*  Contenedor Principal*/
    .contenido{
        width: 90vw;
        margin: auto;
        padding-top: 10vh;
        /*Flexbox*/
        display: flex;
        flex-direction: column;
     }



     /*clases genericas*/
    .seccion{
        width: 100%;
        height: 88vh;
        padding: 0;
        border-top: 4vh solid rgb(1, 36, 70);
    }


    .subtitulo{
        font-size: 6vmin;
        color: rgb(12, 125, 54);
        letter-spacing: 0.25em;
        background-color: transparent;
        text-align: center;
        text-shadow: 2px 2px 2px silver;
         padding-top: 1%;

    }


    
    /*  Bloques */
    .presentacion{
    background-color: rgb(99, 171, 244);
    /* centrar titulo*/
    display: flex;
    align-items: center;
    justify-content: center;
    }










    
    .Preguntas{
    background-color: cornflowerblue;
   font-size: 2.5vmin;
   line-height: 4.5vmin;
   background-image: url("../img/preguntas.jpg");
   background-size: cover;
    }
    .izq{
     background-color: rgb(18, 143, 62);
     margin-left: 5%;
     padding-left: 5%;
     margin-right: 5%;
     text-align: left;
     color: aliceblue;
     border-left: 1vmax solid dodgerblue;
    }
    .izq::before{
        content:"♆";
        padding-right: 2%;
    }
    .der{
        background-color: dodgerblue;
        margin-right: 5%;
        padding-right: 5%;
        margin-left: 5%;
        text-align: right;
        color: aliceblue;
        border-right: 1vmax solid dodgerblue;
    }
    .respuesta{
        font-family: 'Times New Roman', Times, serif;
        background-color: transparent;
        font-weight: 900;
        color: black;
        font-size: 2.75vmin;
    }













    .illia{
        background-color: cornflowerblue;

 }
 .container{
    width: 100%;
margin: 0px auto;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}

.container .box
{
position: relative;
width: 200px;
height: 200px;
margin: 100px;
box-sizing: border-box;
display: inline-block;
}

.container .box .imgBox
{
position: relative;
overflow: hidden;

}
.container .box .imgBox img
{
  width: 100%;
max-width: 100%;
transition: transform 2s;
}
.container .box:hover .imgBox img
{
transform: scale(1.2);
}
.container .box .details
{
position: absolute;
top: 10px;
left: 10px;
bottom: 10px;
right: 10px;
background: rgba(0,0,0,.8);
transform: scaleY(0);
transition: transform .5s;
}
.container .box:hover .details
{
transform: scaleY(1);
}
.container .box .details .content
{
position: absolute;
top: 50%;
transform: translateY(-50%);
text-align: center;
padding: 15px;
color: #fff;
}
.container .box .details .content h1
{
margin: 0;
padding: 0;
font-size: 20px;
color: #ff0;
}
.container .box .details .content p
{
margin: 10px 0 0;
padding: 0;
}

@media screen and (max-width: 768px) {
.container {
    padding: 0;
}
.container .box {
margin: 0;
}

}














    .preferencias{
        background-color: cornflowerblue;
    }
    .wrap {
        overflow:auto;
        margin: 10px;
      }
      .box {
        float: left;
        position: relative;
        width: 20%;
        padding-bottom: 20%;
        height: 20px;
      }
      .boxInner {
        position: absolute;
        left: 10px;
        right: 10px;
        top: 20px;
        bottom: 10px;
        overflow: hidden;
      }
      .boxInner img {
        width: 23vw;

      }
      .boxInner .titleBox {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin-bottom: -10px;
        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%;
        }
      }
    
   














    .futuro{
        background-color: cornflowerblue;
        margin-top: 300px;
    }

    .collage_v,.collage_h{

        display: none;

        width: 90%;
        margin: auto;
    }

    .collage_v img{
        width: 100%;
    }

    .collage_h img{
        width: 100%;
    }

    /* si estamos en horizontal*/
    @media (orientation:landscape){

        .collage_h{
             display: block;
        }

    }

    @media (orientation:portrait){

        .collage_v{
            display:block;
        }
    }


    /*Pie de pagina*/
    .pie{
      width: 100vw;
      height: 12vh;
      background-color: rgb(125, 160, 197);
      color: rgb(5, 4, 3);
      position:fixed;
      bottom: 0vh;
      text-align:left;
       }
           
       .fancy{
        background-color: rgb(125, 160, 197) ;
        border: 2px solid #000;
        border-radius: 0;
        box-sizing: border-box;
        color: #fff;
        cursor: pointer;
        display: inline-block;
        float: right;
        font-weight: 700;
        letter-spacing: 0.05em;
        margin: 0;
        outline: none;
        overflow: visible;
        padding: 2.25em 2em;
        position: relative;
        text-align: center;
        text-decoration: none;
        text-transform: none;
        transition: all 0.3s ease-in-out;
        user-select: none;
        font-size: 13px;
      }
       
       .fancy::before {
        content: " ";
        width: 1.5625rem;
        height: 3px;
        background: rgb(20, 51, 56);
        top: 50%;
        left: 1.5em;
        position: absolute;
        transform: translateY(-50%);
        transform-origin: center;
        transition: background 0.3s linear, width 0.3s linear;
       }
       
       .fancy .text {
        font-size: 1.125em;
        line-height: 0.29em;
        padding-left: 1.5em;
        display: block;
        text-align: left;
        transition: all 0.5s ease-in-out;
        text-transform: uppercase;
        text-decoration: none;
        color: rgb(0, 0, 0);
       }
       
       .fancy .top-key {
        height: 2px;
        width: 1.5625rem;
        top: -2px;
        left: 0.625rem;
        position: absolute;
        background: #e8e8e8;
        transition: width 0.5s ease-out, left 0.3s ease-out;
       }
       
       .fancy .bottom-key-1 {
        height: 2px;
        width: 1.5625rem;
        right: 1.875rem;
        bottom: -2px;
        position: absolute;
        background: #e8e8e8;
        transition: width 0.5s ease-out, right 0.3s ease-out;
       }
       
       .fancy .bottom-key-2 {
        height: 2px;
        width: 0.625rem;
        right: 0.625rem;
        bottom: -2px;
        position: absolute;
        background: #e8e8e8;
        transition: width 0.5s ease-out, right 0.3s ease-out;
       }
       
       .fancy:hover {
        color: white;
        background: black;
       }
       
       .fancy:hover::before {
        width: 0.9375rem;
        background: white;
       }
       
       .fancy:hover .text {
        color: white;
        padding-left: 1.5em;
       }
       
       .fancy:hover .top-key {
        left: -2px;
        width: 0px;
       }
       
       .fancy:hover .bottom-key-1,
        .fancy:hover .bottom-key-2 {
        right: 0;
        width: 0;
       }
      
      
      



