body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

header {
    background: #222222;
    color: white; /* Text color */
    padding: 1rem 0; /* Adjust padding as needed */
    text-align: center;
    padding: 1rem 0;
    text-align: center;
    font-size: 24px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
}


nav ul li a {
    color: white;
    text-decoration: none;
}


nav ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 1rem;
    font-size: 16px;
}


section {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #ffffff; /* White background color */
    border-radius: 5px; /* Optional: Adds rounded corners */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow */
    font-size: 20px; /* Font size for section headers */
}


footer {
    background: #333;
    color: white; /* Text color */
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px; /* Smaller font size for footer */
}

