* {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.4em;
  color: #eee;
  box-sizing: border-box;
}

body {
  margin: 40px;
  width: calc(100% - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #242220;
}

header {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  position: relative;
}

h1 {
  margin: 1em 0 0.5em 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
}

p {
  font-size: 1.2em;
  font-weight: 300;
}

ul.links {
  padding: 0;
  display: flex;
  gap: 2em;
  list-style: none;
  align-items: start;
}

a {
  display: inline-block;
  color: #0bf;
  text-decoration: none;
  border-bottom: solid 1px;
  border-color: transparent;
  &:hover {
    border-color: inherit;
  }
}

button {
  cursor: pointer;
}

@media (prefers-color-scheme: light) {
  * {
    color: #111;
  }
  a {
    color: #07f;
  }
  body {
    background-color: #fffef7;
  }
}

@media (max-width: 640px) {
  ul.links {
    gap: 0.5em;
    flex-direction: column;
  }
}
