/* style.css */
body {
  background-color: #cce7ff; /* Light blue background */
  color: #003366; /* Dark blue text */
  font-family: Arial, sans-serif;
  text-align: center;
  padding-top: 50px;
}

h1 {
  color: #0055cc; /* Medium blue for headings */
}

a {
  color: #3399ff; /* Blue for links */
  text-decoration: none;
}

a:hover {
  color: #0033cc; /* Darker blue on hover */
  text-decoration: underline;
}
