/* style.css */

body {
  font-family: 'Verdana', sans-serif;
  background-color: #dff0ff; /* light blue like a 2000s forum */
  background-image: url('back1.png');
  color: #222;
  margin: 2em;
}

header {
  text-align: center;
  margin-bottom: 3em;
}

nav {
  text-align: center;
  margin-top: 2em;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h2 {
  color: #003366;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.3em;
  margin-top: 2em;
}

footer {
  text-align: center;
  font-size: 0.9em;
  margin-top: 5em;
  color: #777;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white */
  border-radius: 10px;
}
