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

body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf8f5;
  color: #2c2c2c;
  font-family: Georgia, 'Times New Roman', serif;
}

main {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: normal;
  letter-spacing: 0.05em;
}

.date {
  font-size: 1.1rem;
  color: #888;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.venue {
  font-size: 1.2rem;
}

.address {
  font-size: 0.95rem;
  color: #888;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #2c2c2c;
  color: #faf8f5;
}
