* {
  font-family: Verdana, sans-serif;
  font-size: 10pt;
  cursor: default;
}

body {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  margin: 0;
}

p {
  color: #808080;
}

b {
  font-weight: bold;
  color: #fff;
}

@media (prefers-color-scheme: dark) {
  body {
    background-color: #181a1b;
  }

  * {
    color: #aaa;
  }

  b {
    color: #fff;
  }
}
