@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #111111;
  font-size: 18px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 15vh 24px 10vh;
}

.wordmark {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 64px;
}

.manifesto p {
  margin-bottom: 1.5em;
}

.manifesto p:last-child {
  margin-bottom: 0;
}

.manifesto h2 {
  font-size: 18px;
  font-weight: 400;
  margin-top: 2.5em;
  margin-bottom: 1em;
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .container {
    padding: 10vh 20px 8vh;
  }
}
