/*events.css*/
.events-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    
}
.events-container h1{
    text-align: center;
    margin-top: 30px;
    color: #3D52A0;
}
.event-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.event-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.event-item h2 {
    font-size: 24px;
    margin-top: 10px;
    color: #3D52A0;

}

.event-item p {
    margin: 5px 0;
}
