h1 {
    text-align: center; /* Centers the text horizontally */
    background-color: #dadada; /* Replace with your desired color */
    color: #006151; /* Makes the text white for better contrast */
    padding: 15px; /* Adds space inside the element */
    margin: 0; /* Removes any default margin */
    font-family: 'Raleway', sans-serif; /* Optional: Choose a modern font */
}


/* General card styling */
.card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    margin: 20px auto;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Header styling */
.card-header {
    background-color: #006151; /*banner color*/
    color: #ffffff;
    padding: 12px;
    text-align: center;
}

.card-header h2 {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5em;
}

/* Body styling */
.card-body {
    padding: 16px;
    font-family: 'Roboto', sans-serif;
    color: #333333;
}

.card-date {
    font-size: 1em;
    font-weight: bold;
    color: #006151;
    margin-bottom: 8px;
}

.card-location, .card-time {
    font-size: 0.9em;
    margin: 4px 0;
}

.card-location {
    color: #555555;
}

.card-time {
    color: #777777;
}

/* Responsive Design */
@media (max-width: 480px) {
    .card {
        max-width: 90%;
    }

    .card-header h2 {
        font-size: 1.2em;
    }

    .card-body {
        font-size: 0.85em;
    }
}
