/* Existing CSS */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('../img/background.jpg') no-repeat center center fixed;
    backdrop-filter: drop-shadow();
    background-size: cover;
    color: #333;
}

nav {
    background-color: rgba(0, 123, 255, 0.8);
    padding: 1em;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffeb3b;
}


/* Styles for mobile devices */
@media (max-width: 600px) {
    body {
        padding: 0 10px;
    }

    nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav a {
        display: block;
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    section {
        padding: 1em;
        margin: 0.5em auto;
        max-width: 100%;
    }

    footer {
        padding: 0.5em;
    }

    .responsive-embed {
        height: 400px; /* Adjust height for mobile view */
    }
}



section {
    padding: 2em;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 1em auto;
    max-width: 800px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

footer {
    background-color: rgba(0, 123, 255, 0.8);
    color: white;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

#content {
    background-color: rgba(173, 216, 230, 0.5); /* Light Blue with 50% opacity */

    padding: 20px; /* Optional - to give some padding to the content */
    border-radius: 8px; /* Optional - to enhance appearance with rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional - slight shadow for better visibility */
}



.responsive-embed {
    width: 100%;
    height: 100vh; /* Full viewport height */
    border: 1px solid #333; /* Optional - to see the boundaries */
}




/* List styles */
ol, ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Link styles */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}