#pantallaNegra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  z-index: 20;
  display: none;
}

#pantallaInicio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.fondo-inicio {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.btn-inicio {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  font-size: 35px;
  cursor: pointer;
  color: white;
  background-color: #ffa600;
  border: none;
  border-radius: 10px;
  font-family: 'VT323', monospace;
  z-index: 30;
}

#contenedorVideo {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}

#videoFinal {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@font-face {
  font-family: 'VT323';
  src: url('fonts/VT323-Regular.ttf') format('truetype');
}