body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
}

h1 {
    color: #333;
}

.events {
    position: relative;
    /* display: flex;
    justify-content: center;
    gap: 20px; */
}

.event-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s;
   
    text-align: center;
}

.event-card h2{
   font-size:28px;
}

.event-card:hover {
    transform: scale(1.05);
}

.event-card img {
    /* width: 80px;
    height: 80px; */
    margin-bottom: 10px;
}

.year-list button {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.year-list button:hover {
    background-color: #e64a19;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-img {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.1);
}

/* Lightbox Effect */
.lightbox {
    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;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}
