body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
}

header {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.logo img {
    max-width: 200px;
    height: auto;
}

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

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 1.5em; /* Adjust the font size as needed */
    font-weight: 400;
}

.content {
    padding: 20px;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 800px;
}

.content img {
    display: block; /* Make sure images are displayed as block elements */
    margin: 0 auto 20px; /* Center images and add bottom margin */
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}
