body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "BeachNine";
  font-weight: 700;
  animation: bgColor 7000ms linear infinite;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

h1, h2 {
  margin: 0px;
  padding: 0px;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5), -1px -1px 0px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

@keyframes h2Transition {
  0%, 50% {
    opacity: 0;
  }
  55%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
svg {
  width: 400px;
  fill: #ffffff;
  z-index: 1;
  clip-path: url("#clipping");
}