body {
  position: relative;
  background-color: #000000;
}

.video-container {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: -1;
}

#video-background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

@media (max-aspect-ratio: 9/16) {
  #video-background {
    width: auto;
    height: 100vh;
  }
}

@media (min-aspect-ratio: 16/9) {
  #video-background {
    width: 100vw;
    height: auto;
  }
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  z-index: 1;
}

.logo-container img {
  max-width: 95vw;
  max-height: 50vh;
  width: auto;
  height: auto;
}

