@font-face {
  font-family: "Red Hat Display";
  src: url("./RedHatDisplay.ttf");
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  overflow: hidden;
}

#video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

div.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  font-family: "Red Hat Display", sans-serif;
  z-index: 4;
  color: #fff;
  text-shadow: 0 20px 10px #000;
}

h1 {
  font-size: 6vw;
  font-weight: 900;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s;
}
h1.active {
  opacity: 1;
}

h2 {
  margin: 0;
  font-size: 4vw;
}

audio {
  opacity: 0;
}