body {
  max-width: 70rem;
  margin-inline: auto;
  background-color: #222;
  font-size: clamp(10pt, 1.75vw, 16pt);
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}

h1 {
  margin-block: 0;
  color: #E80000;
  font-size: clamp(20pt, 3.5vw, 32pt);
}

h2 {
  margin-block: 0;
  color: #444;
  font-size: clamp(13.5pt, 2.2vw, 21pt);
}

a {
  text-decoration: none;
  color: #B32020;
}

.bar {
  display: grid;
  grid-template-columns: 1fr 2fr;
  height: 6rem;
  align-items: center;
}

.bar div {
  background-color: #B32020;
  border-radius: 0 1rem 1rem 0;
  padding: 0.7rem 1rem;
  font-size: clamp(16pt, 3.8vw, 26pt);
  font-weight: bold;
  white-space: nowrap;
}

.bar a {
  justify-self: right;
  margin-right: clamp(1rem, 2.5vw, 2rem);
  color: #fff;
}

.bar img {
  display: block;
}

nav {
  display: flex;
  justify-content: space-evenly;
  background: #fff;
  font-size: clamp(10pt, 1.5vw, 16pt);
  padding-block: 0.75rem;
  white-space: nowrap;
}

nav a {
  color: #000;
}

main {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  background: #fff;
  width: 90%;
  margin: 1.3rem auto;
  padding: 2%;
  border-radius: 0.5rem;
}

main header {
  grid-column: 1/3;
}

main p,
main ul {
  line-height: 1.6;
}

main img {
  max-width: 100%;
  max-height: 24rem;
}

.images {
    display: grid;
}

footer {
  margin-block: 1.5rem;
  font-size: clamp(8pt, 1.3vw, 12pt);
  color: #666;
  text-align: center;
}
