/* Terms of use page. Self-contained: this stylesheet is loaded only here. */

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #000;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  min-height: 100%;
  padding: 192px 0 120px;
}

.logo {
  position: absolute;
  top: 64px;
  left: 64px;
  display: block;
}

.logo img {
  display: block;
  width: 201px;
  height: auto;
}

article {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 60%;
  max-width: 720px;
  margin: 0 auto;
}

header,
section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

h1 {
  margin: 0;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1.3px;
  line-height: 1;
  color: #fff;
}

h2 {
  margin: 0;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.4;
  color: #e5e5e5;
}

h3 {
  margin: 0;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.2px;
  line-height: 1.4;
  color: #e5e5e5;
}

p,
li {
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #8d8d8d;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: flex;
  gap: 12px;
}

/* En-dash marker, in place of the default list bullet. */
li::before {
  content: "–";
  flex: none;
}

a {
  color: #e5e5e5;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 809px) {
  .logo {
    top: 32px;
    left: 32px;
  }
}

@media (max-width: 639px) {
  main {
    padding: 161px 0 246px;
  }

  article {
    width: 80%;
  }
}
