* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0f0f0f;
  color: #e6e6e6;
  font-family: serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section {
  max-width: 620px;
  padding: 48px 32px;
  text-align: center;
}

h1, h2 {
  font-weight: 300;
  letter-spacing: 1px;
}

p {
  line-height: 1.9;
  opacity: 0.85;
}

.actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a, button {
  background: transparent;
  border: 1px solid #444;
  color: #e6e6e6;
  padding: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
}

a:hover, button:hover {
  border-color: #888;
}

.bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  z-index: -1;
}

.overlay {
  background: rgba(0, 0, 0, 0.45);
  padding: 48px 32px;
}
