/** Globales **/
body, main{
    min-height: 100vh;
    background-image: url('fondorevelacion3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    opacity: 1000%;
}
.contenedor {
    width: min(90%, 120rem);
    margin: 0 auto;
    
}

a{
    text-decoration: none;
}
@media (min-width: 800px) {
    .body, main{
          /*background-color: #03013f;*/
    background-image: url('fondorevelacion3.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    opacity: 1000%;
    }
    
   
}

/*Resposive*/



/*Fin Resposive*/




/* HEADER */
.header{
    text-align: center;
    
}
.header h4{
    font-size: 1.9rem;
    margin-top: 1rem;
    color: #af8b55;
    font-family: 'Gagalin', sans-serif;
                                                
}
header h2{
    font-size: 2rem;
    line-height: .5;
    color: #a2722a;
    font-family: 'Gagalin', sans-serif;
                                                    
}
@media (min-width: 500px) {
    .header h4{
     font-size: 3rem;
    }
    .header h2{
     font-size: 1.5rem;
    }
    .contenedor{
        width: auto;
        margin: auto;
    }
  }

/*FIN HEADER */

/* Main */

.bebe-nombre{
    position: relative;
    text-align: center;
}
.contenedor{
    position: relative;
    text-align: center;
}
.bebe-nombre h2{
    
    font-family: "Open Sans", sans-serif;
    color: #b79d85;
}
.bebe-nombre h3{
    font-family: "Allura", cursive;
    color: #a2722a;
    
}
@media (min-width: 500px) {
   .bebe-nombre h2{
    font-size: 3rem;
   }
   .bebe-nombre h3{
    font-size: 4rem;
   }
   .bebe-nombre img{
    width: 50%;
    height: 25%;
   }

 }
.ultrasonido{
    object-fit: cover;
  width:47vw;
  height: 30vw;
  padding: 1vw;
}
.vestimenta{
    margin-top: -2rem;
}
.contenido-vestimenta{
    opacity: 1;
}
.detalles{
object-fit: contain;
  width:90vw;
  height: 67vw;
  margin: 1rem;
  opacity: 20;
}
.detalles h3{
    font-size: 2rem;
    font-family: 'Gagalin', sans-serif;
  
    color: #a2722a;
}
.hora{
    padding: 0 1rem 1rem 1rem;
}
.hora h3{
    color: #af8b55;
    font-family: 'Gagalin', sans-serif;
    margin-top: .5rem;
    font-size: 1.3rem;
}
.fecha{
    margin: 0 1.7rem 0 1.7rem;
    font-size: 1.7rem;
    color: #a2722a;
    font-family: 'Gagalin', sans-serif;
    
}
.osito{
    object-fit: cover;
  width:27vw;
  height: 20vw;
  
  
}
.codigo-vestimenta{
    object-fit: contain;
  width:77vw;
  height: 47vw;
  margin: 1rem;
}
.texto-vestimenta h3{
    color: #985b04;
    font-family: "Open Sans", sans-serif;
    font-size: .9rem;
    margin-top: -2rem;
    padding: 1rem;
}

@media (min-width: 500px) {
    .texto-vestimenta h3{
       
        font-size: 2rem;
        margin-top: -2rem;
        padding: 1rem;
    }
 }
.regalo{
    background-color: #b79d850c;
}

.regalo-imagen{
    object-fit: contain;
  width:57vw;
  height: 47vw;
  margin-top: 1rem;
}
.regalo-principal{
    padding: .8rem;
}
@media (min-width: 500px) {
    .regalo{
        text-align: center;
    }
 }


.juego-texto h2{
    font-family: "Open Sans", sans-serif;
    color: #a2722a;
    font-size:1.8rem;
}
.juego-texto h3{
    font-size: .8rem;
    color: #a2722a;
}
/* Fin main */

/* Boton */

.my-button {
    padding: 10px 20px;
    background-color: #a2722a;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 95%;
    left: 50%;
    
  }
  
  .my-button:hover {
    background-color: #a2722a;
  }
  
  .my-button:active {
    background-color: #a2722a;
  }

  /* Boton confirmar asistencia*/
  .asitencia-contenedor{
    position: relative;
  }
  .boton-confirmar {
    padding: 10px 10px;
    background-color: #a2722a;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
   
    position: absolute;
    z-index: 1;
    transform: translate(-50%, -50%);
    top: 80%;
    left: 50%;
    
  }
  
  .boton-confirmar:hover {
    background-color: #a2722a;
  }
  
  .boton-confirmar:active {
    background-color: #a2722a;
  }


/*  Fin boton*/


/*Animacion rebote*/
#rebota {
   
    animation: rebota .4s alternate infinite ease-out;
  }
  
  @keyframes rebota {
    0% {
      transform: translateY(-5%);
    }
    100% {
        transform: translateY(0%);
    }
  }

  .mostrarIzquierda {
    animation: mostrarIzquierda 2s;
}
.mostrarDerecha {
    animation: mostrarDerecha 2s;
}
@keyframes mover {
    0% {
        transform: translate(100%);
    }
}
@keyframes mostrarIzquierda {
    0% {
        transform: translateX(-180px);
    }
    100% {
        transform: translateX(0);
    }
}
@keyframes mostrarDerecha {
    0% {
        transform: translateX(180px);
    }
    100% {
        transform: translateX(0);
    }
}