* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  min-height: -webkit-fill-available;
  overflow: hidden;
}
body {
  background: #000;
}

.coming-soon {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 580px;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100dvw;
  height: 100%;
  height: 100dvh;
  min-height: -webkit-fill-available;
  overflow: hidden;
}
video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 2;
  transition: opacity 0.4s ease;
}

.video-cover.hidden {
  opacity: 0;
  pointer-events: none;
}

footer {
  z-index: 3;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  font-size: 16px;
  right: 50%;
  margin: 0 auto;
  width: 100%;
}

footer img {
  display: block;
  margin: 0 auto;
  width: 300px;
  margin-bottom: -10px;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

footer p {
  color: #969696;
  margin-top: 10px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .video-cover {
    background-image: url("./images/cover-mobile.jpg");
  }
}

@media (min-width: 769px) {
  .video-cover {
    background-image: url("./images/cover-desktop.jpg");
  }
}

@media (max-width: 768px) {
  footer img {
    width: 70%;
    margin-bottom: 10px;
  }

  .coming-soon {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }

  footer {
    bottom: 5%;
  }

  footer a {
    font-size: 14px;
  }

  footer p {
    font-size: 10px;
  }
}
