*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(160deg, #f8f4ef 0%, #ebe4da 50%, #e5dcd2 100%);
  color: #3d3530;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

.card {
  text-align: center;
  max-width: 28rem;
  width: 100%;
}

.save-the-date {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #8b7355;
  margin: 0 0 1.5rem;
}

.names {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1.75rem;
  color: #2c2520;
}

.date {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  color: #5a5048;
}

.location {
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  letter-spacing: 0.05em;
  margin: 0;
  color: #6b6158;
}

@media (min-width: 480px) {
  .card {
    padding: 2rem 0;
  }

  .names {
    margin-bottom: 2rem;
  }
}
