@import url("https://fonts.googleapis.com/css?family=Poppins");

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  cursor: url(assets/cursorWhite.png) 16 16, auto !important;
  font-family: poppins;
  overflow: hidden;
}

/* no se pueda seleccionar las imagenes, nombres, etc */
.no-select {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Standard */
}

#videoPlayer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Para que el video cubra toda la pantalla */
  z-index: -1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hidden {
  display: none;
}

#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  font-size: 18px;
  background: #00000000;
  color: #ffffff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s; /* Animación de desaparición del botón */
  cursor: url(assets/cursorWhite.png) 16 16, auto !important;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  filter: drop-shadow(0 0 0.2rem #ffffff);
  z-index: 99;
  user-select: none;
  transition: transform 0.2s ease-in-out;
}
#playButton:hover {
  opacity: 0.7;
  transform: translate(-50%, -50%) scale(1.2);
}

/* fondo de inicio */
#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(assets/background2.gif);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.5);
  filter: blur(4px) contrast(120%) brightness(40%);
  transform: scale(1.025);
}

/* foto de inicio */
#iconPrincipal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  opacity: 0.7;
}

/* pixeles dot */
#efectoFondo {
  position: fixed; /* Fija la posición de la imagen */
  top: 0;
  left: 0;
  width: 100%; /* Ajusta el ancho para cubrir toda la pantalla */
  height: 100%; /* Ajusta la altura para cubrir toda la pantalla */
  background: url("assets/dot.png") repeat 0 0 transparent;
  opacity: 0.2;
}
