/* ========== BODY ========== */
body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background: url('background.jpg') no-repeat center center / cover;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 700px;
  width: 90%;
  margin: 4rem auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Darker overlay */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

  /* Force white text for everything inside */
  color: #fff;
}

/* ========== HEADINGS & PARAGRAPHS ========== */
h1, h2, h3, p {
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8); /* Stronger shadow for contrast */
}

/* (Optional) Tweak heading sizes, etc. */
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 1.8rem;
  margin-top: 0.5rem;
}
h3 {
  font-size: 1.2rem;
}

/* (Optional) Link styles */
a {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Footer, etc. can remain the same. */

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1rem; }
}
