body {
    font-family: Catamaran, Montserrat, Lora, sans-serif;
    background-color: #26A093;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 18px;
}

#header {
    background-color: #DD6D34;
    margin: 10px;
    height: 90px;
    border-radius: 5px;
    position: relative; /* Allows positioning of the logo */
    text-align: center; /* Centers the h3 text horizontally */
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically centers the h3 text */
}

#header img.logo {
    position: absolute;
    left: 40px; /* Aligns the logo to the left side of the header */
    height: 90px; /* Adjust the logo size as needed */
}


header h1 {
    font-size: 250%;
    color: #FFFFFF;
    margin: 0;
}

nav ul {
    list-style-type: none;
    background-color: #ECB172; /* Light Orange */
    padding: 10px;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000080; /* Navy */
    font-weight: bold;
}

nav ul li a:hover {
    color: #FFFFFF; /* White */
}


.intro-section {
    margin: 20px;
    padding: 20px;
    background-color: #fef9e7;
    border: 2px solid #f7dc6f;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2em;
    line-height: 1.6em;
    color: #2c3e50;
    text-align: center;
}

.video-section {
    margin: 20px;
    padding: 20px;
    background-color: #EBEBEB;
    border: 2px solid #ccc;
    border-radius: 10px;   
    }

.video-section h2 {
    font-size: 200%;
    color: #ff6600;
    text-align: center;
    }

.video-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.video-wrapper iframe {
    margin: 10px;
    border: 5px solid #003366;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

iframe {
    border: none; /* This removes the border */
}

footer {
    background-color: #DD6D34;
    color: #FFFF;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-top: 5px solid #DD6D34;
}

footer p {
    margin: 0;
    font-size: 1em;
}
