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

body, html {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  text-align: center;
}

main {
  margin-top: 10vh;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.bullets {
  list-style: none;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.bullets li {
  margin: 0.5rem 0;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn {
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn.primary {
  background: #ffffff;
  color: #000000;
}

.btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn:hover {
  opacity: 0.8;
}

footer {
  margin-top: 5vh;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* New background rule appended */
body, html {
  /* Use a semi-transparent dark overlay so the image shows through */
  background:
    linear-gradient(135deg,
      rgba(15, 15, 15, 0.5),
      rgba(20, 20, 26, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('background_resized.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
