/* ---------- Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Base ---------- */

body {
  align-items: center;
  background: #ececec;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 20px;
  text-align: center;
}

::selection {
  background: #000000;
  color: #ececec;
}

/* ---------- Layout ---------- */

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 52px;
  max-width: 440px;
}

.text-block,
footer {
  padding: 0 20px;
}

/* ---------- Media ---------- */

img {
  height: auto;
  object-fit: cover;
  width: 100%;
}

/* ---------- Typography ---------- */

h1,
p,
a {
  font-family: "neue-haas-unica", -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
}

h1 {
  font-size: 32px;
  letter-spacing: 0.05em;
  line-height: 38px;
}

p,
a {
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 17px;
  max-width: 35em;
}

/* ---------- Links ---------- */

a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 3px;
}
