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

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: #fafafa;
  color: #1b1b1b;
  font-family: Georgia, "Times New Roman", Times, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 88px 22px 128px;
}

/* -----------------------------
   Hero
------------------------------ */

.hero h1 {
  font-size: 2.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0 0 14px 0;
}

.tagline {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #6a6a6a;
}

/* -----------------------------
   Sections
------------------------------ */

section {
  margin-top: 76px;
}

/* -----------------------------
   Headings
------------------------------ */

h2 {
  font-size: 1.18rem;
  font-weight: 500;
  margin: 0 0 20px 0;
}

/* -----------------------------
   Paragraphs
------------------------------ */

p {
  font-size: 1.04rem;
  line-height: 1.75;
  margin: 0 0 22px 0;
  color: #1f1f1f;
}

/* Lead paragraph (opening emphasis) */
.lead {
  font-size: 1.15rem;
}

/* -----------------------------
   Lists
------------------------------ */

ul {
  margin: 0 0 28px 0;
  padding-left: 22px;
}

li {
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #1f1f1f;
}

/* -----------------------------
   Emphasis
------------------------------ */

em {
  font-style: italic;
}

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

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

a:hover {
  text-decoration-thickness: 2px;
}

/* -----------------------------
   Social line
------------------------------ */

.social {
  margin-top: 34px;
}

/* -----------------------------
   Footer
------------------------------ */

footer {
  margin-top: 132px;
  font-size: 0.9rem;
  color: #7a7a7a;
}

/* -----------------------------
   Responsive tuning
------------------------------ */

@media (max-width: 600px) {
  .container {
    padding: 72px 18px 110px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .tagline {
    font-size: 1.02rem;
  }

  p,
  li {
    font-size: 1rem;
  }
  }
