html {
  font-size: 16px;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(16px + 6 * ((100vw - 320px) / 680));
  }
}

@media screen and (min-width: 1111px) {
  html {
    font-size: 22px;
  }
}

body {
  max-width: 1000px;
  padding: 1rem;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

h4 {
  font-weight: normal;
}

a:link {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: grey;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: black;
  background-color: transparent;
  text-decoration: underline;
}

/* New CSS class for indented quotation */
.indented-quote {
  margin-left: 2rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  color: inherit;
  font-style: italic;
}

/* CSS rule to make images scale to the same width as videos and text */
img {
  max-width: 100%;
  height: auto;
}
