@font-face {
  font-family: "Mono";
  src: url("/mono.woff2") format("woff2");
  font-display: fallback;
}

@font-face {
  font-family: "MonoBold";
  src: url("/mono-bold.woff2") format("woff2");
  font-display: fallback;
}

html, 
body {
  margin: 0; 
  padding: 0; 
  overflow: hidden;
  background-color: #000;
  font-family: "Mono";
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic {
  position: relative;
  max-width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
  .bg {
    width: 100%;
    height: 100%;
  }
  .fg {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 10;
    max-width: 80px; 
    animation: spin 3s infinite;
  }

.message {
}
  .message > h1 {
    font-size: 22px;
    font-weight: normal;
    font-family: MonoBold;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    margin-top: 2rem;
  }
  .message > p {
    margin: 1rem 0;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: center;
  }
    .message > p > u {
      text-underline-offset: 4px;
    }

.quote {
  text-align: center;
  font-family: Mono;
  text-transform: uppercase;
  margin-top: 3rem;
}

@keyframes spin {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(180deg);
  }
}

@media only screen and (max-width: 500px) {
  .graphic {
    width: 90vw;
  }
    .fg {
      width: 20vw;
    }
}
