.events {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.event {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-image {
    width: 100%;
    height: auto;
}

.event-details {
    padding: 15px;
    text-align: center;
}

.event-details h2 {
    margin: 10px 0;
    font-size: 1.5em;
}

.event-details p {
    margin: 5px 0;
    color: #555;
}

.event-pdf {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.event-pdf:hover {
    background-color: #0056b3;
}
