@font-face {
  font-family: 'Mea Culpa';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/mea-culpa-latin.woff2') format('woff2');
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  background: #FAF6ED;
  color: #000;
  font-family: 'Mea Culpa', cursive;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

main img {
  width: min(300px, 62vw);
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
  mix-blend-mode: multiply; /* white art background melts into the cream page */
}

h1 {
  font-weight: 400;
  font-size: clamp(3.75rem, 12vw, 7.25rem);
  line-height: 1.1;
}

p {
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 1.2;
  margin-top: 0.5rem;
}

main a {
  display: block;
  transition: opacity 0.3s ease;
}

main a:hover img { opacity: 0.82; }

.verse {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  line-height: 1.75;
  max-width: 36rem;
  margin: 1.5rem auto 0;
}

.verse cite {
  display: block;
  font-family: 'Mea Culpa', cursive;
  font-style: normal;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  margin-top: 1.75rem;
}

.word-hands { width: min(150px, 34vw); margin-bottom: 0; }
