/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

 
body {
  margin: 0;
  padding: 0;
  background: url('world-map-bg.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

/* Semi-transparent dark overlay to enhance text visibility */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-color: rgba(6, 35, 59, 0.85); /* dark blue with transparency */
  z-index: -1;
}

/* Header styling */
header {
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid white;
}

/* Main content box */
main {
  padding: 2rem;
  max-width: 900px;
  margin: 2rem auto;
  border: 2px solid white;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05); /* faint card style */
}

/* Headings and paragraph spacing */
h1, h2, p {
  margin: 1rem 0;
}

/* Optional button styling */
button {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
