:root {
  color-scheme: dark;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: #000;
}

body {
  color: #d9c27f;
  font-family: "Cormorant Garamond", Garamond, Baskerville, "Baskerville Old Face", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.mark-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
}

h1 {
  margin: 0;
  color: #dccb98;
  font-size: 148px;
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 #fff2bd,
    0 18px 42px rgb(111 81 28 / 28%),
    0 0 1px rgb(255 255 255 / 55%);
}

@media (max-width: 700px) {
  h1 {
    font-size: 108px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 82px;
  }
}
