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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 36px;
  display: grid;
  place-items: center;
  background: #f3efe8;
  color: #251c18;
  font-family: 'Outfit', sans-serif;
}

.gateway-panel {
  width: min(800px, 100%);
  padding: 58px;
  border-radius: 30px;
  background: #fffaf2;
  border: 1px solid rgba(37, 28, 24, 0.14);
  box-shadow: 0 24px 62px rgba(37, 28, 24, 0.14);
}

.microtitle {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8d5f3d;
}

h1 {
  margin: 0 0 20px;
  max-width: 690px;
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1.03;
}

.copy {
  max-width: 620px;
  margin: 0 0 34px;
  font-size: 1.1rem;
  line-height: 1.74;
}

.home-link {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 999px;
  background: #251c18;
  color: #fffaf2;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease;
}

.home-link:hover {
  transform: scale(1.04);
}
