
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  header {
    background-color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 4;
  }
  
  .logo {
    font-size: 30px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding-left: 20px;
  }

  .navBar {
    display: flex;
  }
  
  .navBar a {
    color: black;
    text-decoration: none;
    text-align: center;
    padding: 0 20px;
    font-size: 15px;
    transition: background-color 0.2s, color 0.2s;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .navBar a:hover {
    background-color: #006600;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  

  .dropdown {
    float: left;
    overflow: hidden;
    z-index: 4;
  }

  .dropdown .dropButton {
    font-size: 15px;
    background-color: inherit;
    font-family: inherit;
    padding: 0 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
    display: inline-block;
  }
  
  .dropdownContent {
    display: none;
    position: absolute;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 3;
  }
  
  .dropdownContent a {
    float: none;
    color: black;
    padding: 20px;
    background-color: white;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown:hover .dropdownContent {
    display: block;
  }


  
  .banner {
    position: relative;
    max-width: 100%;
    height: 500px;
    margin: 0 auto;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
  }
  
  .banner img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    display: block;
    object-position: 50% 30%; /* Adjust banner image, (x, y) */
  }

  .banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
  }

  .bannerText {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: larger;
    position: absolute;
    top: 400px;
    right: 200px;
    transform: translate(0%, -50%);
    color: white;
    text-align: center;
    z-index: 1;
  }
  
main {
  padding-left: 200px;
  padding-right: 200px;
  margin-top: 50px;
  line-height: 2;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container1 {
  display: flex;
  justify-content: space-between;
}

.featured {
  flex: 3; /* Takes up more space */
  margin-right: 20px;
}

.events {
  flex: 1; /* Takes up less space */
}


footer {
  background-color: #006600;
  color: white;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-top: 50px;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.5);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footerLogo {
  font-size: 30px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding-left: 20px;
}

.footerContent p {
  margin: 0; /* Remove any default margin from <p> */
  font-size: 15px;
  color: white;
  padding: 20px;
}



/* General container for clubs */
.club-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 20px;
}

/* Individual club card (rectangle) */
.club-info {
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow around box */
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: transform 0.2s ease-in-out; /* Small animation on hover */
  position: relative;
}

/* Add some hover effect for interaction */
.club-info:hover {
  transform: translateY(-5px); /* Moves the box slightly upwards */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

/* Image on the right side */
.club-image {
  flex-shrink: 0; /* Prevents image from shrinking */
  margin-left: 20px; /* Space between image and text */
  max-width: 150px; /* Set a max width for the image */
  max-height: 150px; /* Set a max height for the image */
}

.club-image img {
  width: 100%; /* Ensure the image fits within the container */
  height: auto;
  object-fit: cover; /* Ensure the image doesn't distort */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}