@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

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

html,
body {
  height: 100%;
}

body {
  font-family: 'Fraunces', serif;
  background: #8c8c8c;
  color: #2a2a2a;
}

main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.card {
  background: #ffffff;
  padding: 2.5rem 3.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}

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

  h1 {
    white-space: normal;
  }
}
