

header {
    background-color: #0073e6;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.event-recap h2 {
    color: #0056b3;
    text-align: center;
}

.event-recap p {
    line-height: 1.6;
}

.event-recap ul {
    list-style-type: disc;
    padding-left: 20px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #005bb5;
}



.gallery-section {
    padding: 20px;
    margin-top: 20px;
  }
  
  .filter-buttons {
    margin-bottom: 20px;
  }
  
  .filter-btn {
    padding: 10px 15px;
    margin: 5px;
    border: none;
    background: #007BFF;
    color: white;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .filter-btn.active, .filter-btn:hover {
    background: #0056b3;
  }
  
  .gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-item {
    margin: 10px;
    overflow: hidden;
    cursor: pointer;
  }
  
  .gallery-item img {
    width: 500px;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.1);
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    max-width: 80%;
    max-height: 80%;
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
  }
  