:root {
  --bg: #f7f3ea;
  --text: #15130f;
  --muted: #7c7568;
  --hairline: rgba(21, 19, 15, 0.12);
  --selection: rgba(21, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100svh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.42), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: "Cantata One", Georgia, "Times New Roman", serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--selection);
}

main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.mark {
  width: min(100%, 54rem);
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Cantata One", Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 9vw, 7.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: clamp(0.22rem, 1.2vw, 0.95rem);
}

.rule {
  width: 2.75rem;
  height: 1px;
  margin: clamp(2.4rem, 6vw, 4rem) auto;
  background: var(--hairline);
}

blockquote {
  margin: 0 auto;
  max-width: 46rem;
}

.quote {
  margin: 0;
  font-family: "Cantata One", Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.45vw, 1.95rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.018em;
}

.author {
  margin-top: 1.35rem;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.74rem, 1.25vw, 0.9rem);
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  main {
    padding: 1.4rem;
  }

  .rule {
    width: 2rem;
  }

  h1 {
    letter-spacing: 0.2rem;
  }
}
