:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  place-items: center;
  background: #111516;
}

main {
  display: grid;
  width: min(420px, calc(100% - 32px));
  gap: 12px;
}

a {
  padding: 18px 20px;
  border: 1px solid #3b4447;
  color: #f2efe7;
  background: #1b2022;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  border-color: #efb15f;
  background: #252b2d;
  outline: none;
}
