/* styles.css */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #1c70c8; /* Valid background color */
  color: white;
}

header, footer {
  background-color: #025482; /* Updated background color to match the logo */
  padding: 10px;
  text-align: center;  /* Centering the content in the footer */
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.nav-container {
  display: flex;
  flex-direction: column;  /* Stacks logo above the navigation links */
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 10px;
}

.logo {
  height: 130px;  /* Doubled the size of the logo */
  margin-bottom: 10px; /* Adds space between the logo and the navigation links*/
}

.nav-links {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  color: white;
  font-size: 1.1em;
}

nav a:hover {
  text-decoration: underline;
}

section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
}

h1, h2 {
  color: white;
}

p {
  color: white;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
}
