@import "reset.css";
@import "fonts.css";

body {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-family:
    "EB Garamond", Palatino, "Palatino Linotype", "Palatino LT STD",
    "Book Antiqua", Georgia, serif;
  max-width: 85ch;
  margin: 5rem 10rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding: 1.5rem;
  background-color: #151515;
  color: #dddddd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a,
a:hover,
a:active,
a:visited {
  color: #dddddd;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

@media (width <= 850px) {
  body {
    margin: 2.5rem 5rem;
  }
}

@media (width <= 640px) {
  body {
    margin: 0;
  }
}
