@font-face {
  font-family: 'GohuFont14';
  src: url('/assets/gohu.woff2') format('woff2');
}

@keyframes animate {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

body {
  font-family: 'GohuFont14', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: auto;
  background-color: #f0f0f0;
  background: linear-gradient(69deg, #03a9f4aa, #f441a555, #ffeb3b55, #03a9f455);
  background-size: 600%;
  animation: animate 10s ease-in infinite;
}

h1 {
  font-size: 5vw;
  color: #00000099;
  text-align: center;
  align-self: center;
}