@import url('https://fonts.cdnfonts.com/css/coliner?styles=192941');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Coliner';
}

/* Video de fondo */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* queda detrás del texto */
}

/* Overlay con el texto tipo "Under Construction" */
.overlay {
  position: absolute;
  top: 65%; /* Ajusta este valor para bajarlo más o menos */
  left: 50%;
  transform: translateX(-50%); /* solo centrado horizontal */
  text-align: center;
}

h1 {
  color: #ffffff;
  font-size: 70px;
}

span {
  color: #fff724;
}
