@font-face {
  font-family: "thunderdome";
  src: url("/font/thunderdome.otf") format("opentype");
}

body {
  font-family: "thunderdome", sans-serif;
}

hr {
  border: 1px solid white;
}

h1 {
  font-size: 100px;
}

h3 {
  font-family: Arial, Helvetica, sans-serif;
}

.marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee span {
  display: inline-block;
  color: white;
  font-size: 30px;
  animation: marquee 120s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}
