/* Privacy policy 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;
}

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

/* Secondary paragraphs within a section are set tighter. */
section p + p {
  line-height: 1.2;
}

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

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

  article {
    width: 80%;
  }
}
