body {
    background-color: #f0f8ff;
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 50px;
}

h1 {
    color: #2e8b57;
}

.slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.event-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-top: 20px;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caption {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

#sliderImage {
    max-width: 400px;
    max-height: 300px;
    border-radius: 10px;
    margin: 0 20px;
    transition: opacity 0.3s ease;
}

.slider-btn {
    background-color: #333;
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.slider-btn:hover {
    background-color: #555;
}
