@font-face {
  font-family: 'Roboto Mono';
  src: url('../fonts/RobotoMono.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

html,
body {
  font-family: 'Roboto Mono', monospace;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Default dark mode styles */
body {
  background-color: #000000;
  color: #fafafa;
}

.text {
  font-weight: 100;
  font-size: clamp(2rem, 8vw, 4.5rem);
  color: #fafafa;
}

.dud {
  color: #757575;
}

/* Override for light mode if system prefers it */
@media (prefers-color-scheme: light) {
  body {
    background-color: #ffffff;
    color: #000000;
  }

  .text {
    color: #000000;
  }

  .dud {
    color: #aaaaaa;
  }
}
