.cinematic-container {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #000;
  }
  
.cinematic-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 150ms ease;
}
  
#phase1Video {
    opacity: 1;
}
  
.website-container {
  display: none;
  opacity: 0;
  transition: opacity 20ms ease;
}
  
.website-container.visible {
  display: block;
}
  
.website-container.fade-in {
  opacity: 1;
}

.press-space {
  position: absolute;
  z-index: 1;
  margin: 1rem;
  padding: 0.75rem;
  color: white;
  background-color: rgba(18, 72, 108, 0.562);
  border: 1px solid rgb(0, 157, 255);
  font-family: 'Courier New', Courier, monospace;
  animation: slideIn 0.5s ease;
  -webkit-animation: slideIn 0.5s ease;
  display: none;
  transition: .5s ease;
}

@keyframes slideIn {
  0%  {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
}
}