
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, #00c3ff, #ff862f); /* Blue to orange gradient */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

header h1 {
    font-size: 3.5em;
    font-weight: 700;
    letter-spacing: 2px;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 40px 0;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.event {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 25px;
}

.highlight {
    border: 3px solid #00c3ff; /* Thicker border for the next event */
}

.event h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #333;
}

.event p {
    font-size: 1.3em;
    margin-bottom: 0;
    color: #777;
}

.content-box {
    margin-bottom: 100px;
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

footer p {
    font-size: 1.2em;
}

footer a {
    color: #00c3ff;
    text-decoration: none;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    background: #00c3ff;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background: #ff862f;
    transform: scale(1.05);
}

/* Styling for iframe */
iframe {
    width: 100%;
    height: 500px; /* Adjust the height to match the design */
    border-radius: 15px; /* Match the border radius of other elements */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add a shadow similar to the events */
    background-color: white;
}
