@import url("https://fonts.googleapis.com/css?family=Poppins");
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  cursor: url(../assets/cursor2.png) 16 16, auto !important;
  font-family: poppins;
  overflow: hidden;
}
/* Estilo para el contenedor del video */
.video-container {
  position: fixed; /* Fijar el video en la pantalla */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}
/* Estilo para el iframe del video */
.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2); /* Aplicar zoom del 120% */
  width: 100%;
  height: 100%;
  pointer-events: none; /* Desactivar interacción con el video */
  z-index: -1330;

  /* Aplicar desenfoque (blur) 
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  */
}
.name h1 {
  color: #ffffff;
  font-size: 3rem;
  margin: 0;
  filter: drop-shadow(0 0 0.1rem #ffffff);
  user-select: none;
  text-shadow: 0px 0px 16.5px #ffffff;
  background: url(../assets/white.gif);
}
.name {
  position: relative;
  text-align: center;
  background-position: center center; /* Centra el GIF en el contenedor */
  background-repeat: no-repeat; /* No repite el GIF */
  background-size: cover;
  border-radius: 20px; /* Bordes redondeados (opcional) */
  margin: 0 auto;
  width: fit-content;
  top: 250px;
}
.name p {
  margin: 0;
  color: white;
}
.marquee-container {
  position: absolute;
  width: 20%; /* Ocupa el 20% del ancho total */
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.marquee-wrapper {
  display: block;
  width: 100%;
  padding: 5px 0;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}

#marquee {
  display: list-item;
  white-space: nowrap;
}
#marquee a {
  text-decoration: none;
  color: white;
}
/* Desactivar el cursor pointer en los enlaces */
#marquee a,
#marquee a:hover,
#marquee a:focus {
  cursor: default !important;
  cursor: url(../assets/cursor2.png) 16 16, auto !important;
}

.dark-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Negro semi-transparente */
  pointer-events: none;
  z-index: -1;
}
/* auto text */
.typewrite {
  color: white;
  position: absolute;
  filter: drop-shadow(0 0 0.2rem #ffffff);
  user-select: none;
  transform: translateY(16px);
  font-size: 12px;
}

#marquee img.emoticon {
  height: 16px; /* Tamaño pequeño para alinearse con el texto */
  width: auto; /* Mantiene proporción */
  vertical-align: middle; /* Alinea con el texto */
  margin: 0 4px; /* Pequeño espacio a los lados */
}
