html {
  box-sizing: border-box;
}

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

body {
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.container {
  width: 90%;
  max-width: 80ch;
  margin: 0 auto;
  text-align: left;
}

strong {
  font-weight: 700;
  color: #d32f2f;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #1e1e1e;
    color: #e0e0e0;
  }

  strong {
    color: #ff6f61;
  }
}
