/* Base styles for all devices */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
}

img {
  max-width: 100%; /* Ensures images scale with the container */
  height: auto;    /* Maintains aspect ratio */
}

/* Desktop styles (default) */
.header, .footer {
  padding: 20px;
  text-align: center;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

/* Tablet styles (max-width: 768px) */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }

  .sponsor-logos {
    flex-wrap: wrap;
    gap: 10px;
  }

  img {
    width: 100%; /* Ensures images fill their container */
  }
}

/* Mobile styles (max-width: 480px) */
@media (max-width: 480px) {
  body {
    font-size: 16px; /* Improves readability on small screens */
  }

  .header, .footer {
    padding: 10px;
  }

  .sponsor-logos img {
    max-height: 60px; /* Prevents logos from being too tall */
  }

  /* Stack elements vertically and center-align */
  .main-content, .sponsor-logos {
    flex-direction: column;
    align-items: center;
  }
}
/* Home made style sheet for GCO holding page */
body {
    background-color: #FFFAF0;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
   h1, h2 {
font-family: Geneva, Arial, Helvetica, sans-serif;
}



ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f0f0f0;
  
}

li.menuitem {
  float: left;
  border-right: 1px;
}

li a {
  display: block;
  color:#16af02b2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a.active {
  background-color: green;
  color: white;
  font-weight: bold;
} 

/* Change the link color to something else on hover */
li a:hover:not(.active) {
  background-color: #197;
  color: white;
  font-weight: bold;}



div.footer { 
 /* position: fixed; */
padding-top:10px;
  left: 5px;
  bottom: 5px;
  width: 100%;
  max-width: 600px;
  background-color: #f0f0f0;
  color: black;
  text-align: center;
}