:root {
  font-family: "Courier Prime", monospace, system-ui, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: black;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

main {
  max-width: 640px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

ul {
  list-style: none;
  display: flex;
  gap: 12px;
  padding-top: 12px;
}

ul a {
  text-decoration: none;
  color: inherit;
}

ul svg {
  width: 20px;
  height: 20px;
}

ul a:hover {
  text-decoration: underline;
}
