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

body {
  font-family: "Merriweather", Georgia, serif;
  font-size: 18px;        /* was ~16px default */
  line-height: 1.7;      /* improves readability */
}

h1, h2, h3, h4 {
  font-family: "Inter", system-ui, sans-serif;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.9rem;
}

h3 {
  font-size: 1.5rem;
}

/* Float images to the right with spacing */
img.img-right {
  float: right;
  margin: 0.25rem 0 1rem 1rem;
  max-width: 40%;
  height: auto;
}
.clear {
  clear: both;
}
@media (max-width: 768px) {
  img.img-right,
  img.img-left {
    float: none;
    display: block;
    margin: 1rem auto;
    max-width: 100%;
  }
}
/* Float images to the left with spacing */
img.img-left {
  float: left;
  margin: 0.25rem 1rem 1rem 0;
  max-width: 40%;
  height: auto;
}

