:root {
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
  background: #fcf1e0;
  color: #6f271f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-height: 100svh;
  background: #fcf1e0;
}

main {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: clamp(1rem, 3vw, 2.5rem);
}

img {
  display: block;
  width: min(100%, 56rem);
  max-height: calc(100svh - 6rem);
  object-fit: contain;
  margin-bottom: clamp(-3rem, -5vw, -1.25rem);
}

a {
  color: #6f271f;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  text-decoration-color: #b9853f;
  text-underline-offset: 0.3em;
  transition: color 160ms ease;
}

a:hover,
a:focus-visible {
  color: #b9853f;
}

a:focus-visible {
  outline: 2px solid #b9853f;
  outline-offset: 0.35rem;
}

@media (max-width: 40rem) {
  main {
    padding: 1rem;
  }

  img {
    max-height: calc(100svh - 4.5rem);
  }
}
