/* 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." */
/* Banner section */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Header (below the banner) */
header {
  background: #111;
  color: white;
  padding: 1rem;
  text-align: center;
}

header h1 {
  margin: 0.5rem 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}
