body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #d9f2fd; /* Pale blue */
  color: #003366; /* Optional: dark blue text for contrast */
}

.overlay {
  background-color: rgba(255, 255, 255, 0.6); /* Light overlay */
  padding: 40px;
  min-height: 100vh;
}

header img {
  height: 32px;
  margin: 10px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.info, .links {
  display: block;
  text-align: center;
}

.links a {
  display: block;
  margin: 10px 0;
  color: #0066cc;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
  color: #004999;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
  }
  header img {
    height: 18px;
  }
}
