body {
  margin: 0;
  overflow: hidden;
  font-family: sans-serif;
}
header {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 1rem;
  max-width: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  h1 {
    font: -apple-system-body;
    font-family:
      system-ui,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      Roboto,
      Oxygen,
      Ubuntu,
      Cantarell,
      "Open Sans",
      "Helvetica Neue",
      sans-serif;
  }
  a {
    color: oklch(0.7 0.345 125);
    transition: all 0.3s ease-in-out;
  }
  a:hover {
    color: oklch(0.7 0.345 206);
  }
}
p,
#info {
  font-family: monospace;
  font-size: 1.25rem;
  color: oklch(0.3 0.345 24);
}
