/* Reset default styles */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Courier New';
}

/* General styles */
body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    font-size: 18px;
}

.container {
    width: auto;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #ff5722, #ff9800);
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

/* Navbar styles */
nav {
    background: #000000;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background-color: transparent;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: black;
    text-decoration: none;
    font-size: 1.1em;
}

.navbar a:hover {
    color: #ff9800;
}

/* Main content styles */
main {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
}

main h2 {
    color: #ff0022;
    margin-bottom: 10px;
    font-size: 2em;
    text-align: center;
}

main p {
    margin-bottom: 20px;
}

/* List styles */
ul {
    list-style-type: none;
}

ul li {
    background: #ffeb11;
    color: #000000;
    margin: 10px 0;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

ul li:hover {
    background: #ffcdd2;
}

/* Footer styles */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer p {
    font-size: 1em;
}

/* Responsive design */
@media (max-width: 768px) {
    header, main, footer {
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    main h2 {
        font-size: 1.5em;
    }

    .container {
        width: 95%;
    }

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .navbar li {
        margin: 10px 0;
    }
}
/* Additional CSS for positioning the menu to the right */
        .navbar {
            position: absolute;
            top: 0;
            right: 0;
            padding: 5px;
        }

        .navbar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        .navbar ul li {
            margin-left: 20px;
        }

        .navbar ul li a {
            text-decoration: none;
            font-weight: 400;
            color: #333;
        }

        .header {
            text-align: center;
            padding: 50px 0; /* Adjusted for header spacing with the navbar */
            background-color: #f8f9fa;
        }

