/* Reset default margin and padding */
body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* Set the background color and text color */
body {
    background-color: black;
    color: lightgray;
    font-family: Arial, sans-serif;
}

/* Style the header/logo section */
header {
    background-color: black;
    text-align: center;
    padding: 20px 0;
}

.logo img {
    max-width: 400px;
}

/* Style the main content */
main {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Style the description section */
.description {
    text-align: center;
    margin-bottom: 30px;
}

.description h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Style the event sections */
.events {
    margin-top: 20px;
}

.events h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.event {
    background-color: #333;
    padding: 10px;
    margin-bottom: 10px;
}

/* Style event details */
.date, .time, .location {
    font-size: 16px;
    margin-bottom: 5px;
}

.eventdescription {
    font-size: 14px;
}

/* Style past and future event sections differently */
.past-events {
    background-color: rgba(128, 128, 128, 0.4);
}

.future-events {
    background-color: rgba(255, 255, 255, 0.1);
}
