/* Reset default margin and padding */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Style the header */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

#header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 50px;
    height: 50px;
    margin-left: 20px;
}

nav ul {
    list-style: none;
}

    nav ul li {
        display: inline;
        margin-right: 20px;
    }

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style the sub-areas */
.sub-area {
    padding: 20px;
    margin: 20px;
    border: 1px solid #ccc;
}

    .sub-area img {
        max-width: 100%;
        height: auto;
    }

/* Style headings and paragraphs */
h2, h3 {
    color: #333;
    margin-bottom: 10px;
}

p {
    color: #666;
}

/* Customize your additional CSS as needed */

body {
    font-family: Arial, sans-serif;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

    footer p {
        margin: 0;
    }

    footer a {
        color: white;
        text-decoration: none;
        margin: 0 10px;
    }

.social {
    margin-top: 10px;
}

    .social a {
        text-decoration: none;
    }

    .social img {
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }
