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

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #1a0a00;
  color: #f5e6d0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

main {
  text-align: center;
  max-width: 620px;
}

.icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.4rem;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #e8a96e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: #d4b896;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  background: #e8a96e;
  color: #1a0a00;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: #f5c98a;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}
