*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;

  margin: 0;
}

:root {
  --background: black;
  --foreground: white;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

html {
  background: var(--background);
  color: var(--foreground);

  line-height: 1;
  tab-size: 4;

  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

main {
  min-height: 100vh;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

section {
  padding-bottom: 4em;
}

.title {
  font-size: 2em;
  font-weight: semibold;
  margin-bottom: 32px;
}

.text {
  font-size: 0.875rem;
}

.links {
  margin-bottom: 24px;
}

a:link {
  color: orange;
  background-color: transparent;
}

a:visited {
  color: #ea6722;
  background-color: transparent;
}
