body, html {
  height: 100%;
  margin: 0;
  font-family: 'Arial';
    background-color: #323232;
    overflow-x: hidden;
    font-weight: lighter;
    -webkit-transition: fadeIn 2s;
    -moz-transition: fadeIn 2s;
    -o-transition: fadeIn 2s;
    -ms-transition: fadeIn 2s;
    transition: fadeIn 2s;
    scroll-behavior: smooth;
    -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
  }
  
  .hero-image {
    background-image: linear-gradient(rgba(255, 255, 255, 0), #262726), url("IMG_Hero_Image.jpg");
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    border-color: white;
    padding: 10px 10px;
    font-weight: 100;
  }
  
  @keyframes swipe {
      0% {
          opacity: 0;
          transform: translateY(10px);
      }
  
      100% {
          opacity: 1;
      }
      
  }
  .hero-text h1 {
      font-size: 50px;
      animation: swipe 0.6s;
  }
  
  .hero-text p {
    animation: swipe 0.6s;
  }
  .opening {
      width: 80%;
      font-size: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      margin-top: 5%;
      color: white;
  }
  
  @media (max-width: 1000px) {
      .opening {
          width: 75%;
      }   
      
  }
  
  @media (max-width: 650px) {  
      .hero-text h1 {
          font-size: 40px;
      }
  }
  
  @media (max-width: 500px) {  
      .hero-text h1 {
          font-size: 30px;
      }
  }
  
  @media (max-width: 400px) {  
      .hero-text h1 {
          font-size: 20px;
      }
  }









  .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px; /* Add some padding for better spacing */
    background-color: #262726; /* Dark background for contrast */
}

h1 {
    text-align: center;
    color: #f0f0f0; /* Softer white for better readability */
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif; /* Change font for a modern look */
    font-size: 2.5em; /* Increase font size */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add subtle shadow */
}

.newspaper-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20%, 1fr)); /* Set a minimum width */
    gap: 20px; /* Space between items */
}

.club {
    background-color: #2c2c2c; /* Slightly lighter background */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Deeper shadow for depth */
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s; /* Add shadow transition */
    display: flex;
    flex-direction: column; /* Stack children vertically */
}


.club-img {
    width: 100%;
    height: auto; /* Adjust height for better aspect ratio */
    object-fit: cover; /* Ensure image covers the area */
}

.club-content {
    padding: 20px; /* Increase padding for better spacing */
    flex-grow: 1; /* Allow content to grow and fill space */
    background-color: #3a3a3a; /* Different background for content area */
}

h2 {
    margin: 0 0 10px;
    color: #f0f0f0;
    font-family: 'Arial', sans-serif; /* Consistent font */
    font-size: 1.5em; /* Increase font size */
}

h3 {
    margin: 10px 0 5px;
    color: #f0f0f0;
    font-family: 'Arial', sans-serif; /* Consistent font */
    font-size: 1.2em; /* Increase font size */
}

p {
    color: #d0d0d0; /* Softer text color */
    line-height: 1.6; /* Increase line height for readability */
}

ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
}

ul li {
    margin: 5px 0; /* Space between list items */
    color: #d0d0d0; /* Softer text color */
}

.contact-info {
    background-color: #232323;
    padding: 15px; /* Increase padding */
    border-radius: 5px;
    margin-top: 15px;
    border: 1px solid #444; /* Add border for definition */
}

.contact-info h3 {
    margin: 0 0 5px;
    color: #f0f0f0; /* Consistent color */
}

@media (max-width: 1200px) {
  .newspaper-layout {
      grid-template-columns: 1fr; /* Stack items on smaller screens */
  }

  .club {
      height: auto; /* Allow the club to adjust its height based on content */
  }

  .club-img {
      width: 100%;
      height: auto; /* Set height to auto to maintain aspect ratio */
      object-fit: cover; /* Ensure image covers the area */
  }
}

  
  

  
  .footer {
    text-align: center;
    font-size: 20px;
    margin-top: 100px;
    height: auto;
    color: white;
}

.footer p {
    color: white;
}

@media only screen and (max-width: 1700px) {
  .footer {
    font-size: 18px;
  }
}

@media only screen and (max-width: 768px) {
  .footer {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  .footer {
    font-size: 14px;
  }
}

@media only screen and (max-width: 320px) {
  .footer {
    font-size: 12px;
  }
}


