body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 16px;
    background-image: url('../img/fondo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.oculto {
    display: none;
}


.input {
    color: #000000;
    border: 2px solid #38bcfa;
    border-radius: 10px;
    padding: 10px 25px;
    background: transparent;
    max-width: 190px;
  }
  
  .input:active {
    box-shadow: 2px 2px 15px #38bcfa inset;
  }
  

/* From Uiverse.io by ShrinilDhorda */ 
.btn {
    position: relative;
    width: 120px;
    height: 40px;
    background-color: #000;
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
    justify-content: center;
    border: none;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -4px;
    top: -1px;
    margin: auto;
    width: 128px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
  }
  
  .btn:hover::after {
    filter: blur(30px);
  }
  
  .btn:hover::before {
    transform: rotate(-180deg);
  }
  
  .btn:active::before {
    scale: 0.7;
  }
  
  

.box {
    width: 70%;
    margin: 100px auto;
    text-align: center;
    border: 1px solid #38bcfa;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    opacity: 0.8;
}

.lblopc {
    margin: 0 auto;
    cursor: pointer;
}

#divrpta {
    color: #fff;
    padding: 10px 10px;
    border-radius: 3px;
}

.correcto {
    background: green;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 3px;
}

.incorrecto {
    background: red;
    color: #fff;
    padding: 5px 10px;
    font-size: 10px;
    border-radius: 3px;
}

.separador {
    margin-top: 40px;
    border-top: 1px solid rgb(185, 12, 99);
    padding-top: 20px;
}

#timer {
    color:#e81cff;
    padding: 10px;
    font-size: 20px;
    border-radius: 30px;
    border: 3px solid black;
    width: 26px;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
}

/* Estilo para el mensaje emergente */
.mensaje-emergente {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: white;
  border: 3px solid #38bcfa;
  z-index: 1000;
  text-align: center;
  max-width: 80%; /* Limita el ancho del mensaje emergente */
  overflow: auto; /* Añade barra de desplazamiento si es necesario */
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra el contenido horizontalmente */
}

/* Estilo para la imagen dentro del mensaje emergente */
.mensaje-emergente img {
  width: 200px; /* Ajusta el tamaño según tus necesidades */
}

/* Estilo para el botón dentro del mensaje emergente */
.mensaje-emergente .btn {
  margin-top: 10px;
}
