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

* {
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  text-align: center;
  padding: clamp(1.5rem, 6vw, 3rem);
}

main {
  width: min(100%, 980px);
}

p {
  margin: 0;
}

.quote {
  font-size: clamp(1.45rem, 5.8vw, 2.75rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.2;
}

.closed {
  margin-top: clamp(1.5rem, 4vw, 2.75rem);
  font-size: clamp(1.2rem, 4.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

.swan {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1;
}

@media (max-width: 480px) {
  .quote {
    font-size: clamp(1.25rem, 5.6vw, 1.65rem);
    line-height: 1.16;
  }

  .closed {
    margin-top: 1.25rem;
  }
}
