@import url(reset.css);

:root {
  --body-font-size: clamp(1.3rem, 1.8vw, 2rem);
}

html,
body {
  font-family: Times new Roman, Times;
}

body {
  padding: clamp(1rem, 1.5vw, 2rem);
  background-color: rgba(245, 245, 245, 1.0);
  font-size: var(--body-font-size);
}

a:link,
a:visited {
  color: black;
  text-decoration: underline;
}

a:hover {
  text-underline-offset: 0.2em;
  color: red;
}

a:active {
  color: blue;
  text-underline-offset: 0em;
}

section {
  max-width: 55ch;
}

h1,
li {
  font-size: var(--body-font-size);
  line-height: 1.1em;
  margin-bottom: 0.55em;
}

ul {
  padding-left: var(--body-font-size);
}

li {
  list-style: outside;
}