@font-face {
  font-family: Satoshi;
  font-style: normal;
  font-weight: 300 900;
  src:
    url("/fonts/Satoshi-Variable.woff2") format("woff2"),
    url("/fonts/Satoshi-Variable.woff") format("woff"),
    url("/fonts/Satoshi-Variable.ttf") format("truetype");
  font-display: swap;
}

:root {
  --background-color: #fdfdfe;
  --foreground-color: #030303;
  --button-hover-color: #f1f1f1;
  --button-active-color: #e4e4e4;

  --font-family: Satoshi, "Open Sans", "Helvetica Neue", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #030303;
    --foreground-color: #fdfdfe;

    --button-hover-color: #1e1e1e;
    --button-active-color: #343434;
  }
}

html {
  font-family: var(--font-family);
  color: var(--foreground-color);
  background-color: var(--background-color);
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem;
}

.container {
  width: 100%;
  max-width: 20rem;
  margin-inline: auto;
}

.title-1 {
  margin-block-end: 0;
}

.subtitle {
  margin-block: 0;
  text-align: center;
}

ul {
  padding-inline-start: 0;
}

li {
  list-style-type: none;
  margin-bottom: 0.25rem;
}

a {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 30rem;
  height: 3rem;
  line-height: 3rem;

  color: inherit;
  text-decoration: none;
  border-radius: 1rem;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  background-color: var(--button-hover-color);
}

a:active {
  background-color: var(--button-active-color);
}

img {
  height: 1.5rem;
}
