body {
  font-family: Arial, sans-serif;
  background-image: url("/images/backgrnd1.gif");
  margin: 0;
  padding: 20px;
  color: #000;
}

.top-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
}

.banner-img {
  height: 80px;
  border: 3px solid #000;
  max-width: 100%;
}

.site-title {
  color: orange;
  font-size: 3em;
  text-align: center;
  flex-grow: 1;
}

.nav-links {
  text-align: center;
  font-size: 1.2em;
  margin-top: 15px;
}

a {
  color: #008000;
  text-decoration: none;
}

hr {
  margin: 20px auto;
}

/* 🎯 Responsive Design */
@media screen and (max-width: 768px) {
  .site-title {
    font-size: 2em;
  }

  .nav-links {
    font-size: 1em;
  }

  .banner-img {
    height: 60px;
  }
}

@media screen and (max-width: 480px) {
  .site-title {
    font-size: 1.5em;
  }

  .nav-links {
    font-size: 0.9em;
    line-height: 1.6em;
  }

  .top-banner {
    flex-direction: column;
    align-items: center;
  }
}