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

:root {
  --pink: #e89bb4;
  --pink-deep: #d97a9b;
  --olive: #93a06a;
  --olive-deep: #7c8a52;
  --ink: #6f6a5e;
}

body {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--ink);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}
.reveal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 6rem;
  color: #f76c46;
  transform: rotate(-61deg);
}