body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
  overflow: hidden;
}

video {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.text {
  position: fixed;
  bottom: 0;
  font-size: 20px;
  color: #fff;
  padding: 30px;
  text-align: center;
  left: 0;
  right: 0;
  animation: fade 4s 1 6s forwards;
  opacity: 0;
  transform: translateY(100%);
}

.text span {
  color: #e62643;
  font-weight: bold;
}

a {
  color: #29f29f;
}

@media only screen and (max-width: 800px) {
  h1 {
    font-size: 20px;
  }

  .text {
    font-size: 14px;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
