body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.loader-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  animation: slideIn 1s forwards, fadeOut 1s 1.5s forwards; /* Añade animación slideIn y luego fadeOut */
}

.loader2 img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}

.bodycolor {
  background-color: #000000;
}

.container {
  display: flex;
  width: 100%; /* Ajusta el ancho del contenedor */
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: #ffffff; /* Fondo blanco */
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.5s ease;
}

.fade-in {
  opacity: 1; /* Muestra el contenido */
}

.page {
  width: 100%; /* Ajusta el ancho de la página */
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.page1 {
  /* Puedes agregar estilos adicionales aquí si es necesario */
}



/* ================Letras de carga================== */





/* Estilo para deshabilitar la selección y copia */
.unselectable {
  user-select: none;
  /* Evita que el usuario seleccione texto */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  -webkit-user-select: none;
  /* Safari */
}