
body {
  margin: 0;
  height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background: #0F2C1F;
  color: #F5F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #DFEA73;
}

h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 320px;
  margin: 0 auto;
}

a.button {
  display: block;
  padding: 14px;
  text-decoration: none;
  color: #0F2C1F;
  background: #DFEA73;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

a.button:hover {
  background: #F5F6F6;
  color: #0F2C1F;
  transform: translateY(-2px);
}
