body, h1, h2, p {
    margin: 0;
    padding: 0;
}

/* background color for the body */
body {
    background-color: #f9f6f3;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* header and navigation */
.navbar {
    background-color: #A8AD97;
    color: #fff;
    padding: 1rem;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}

.nav-list {
    list-style-type: none;
}

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

.nav-list li a {
    color: #fff;
    text-decoration: none;
}

main {
    padding: 2rem;
}

h1 {
    font-size: 36px;
    color: #333;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.about-image img {
    max-width: 300px;
    border-radius: 50%;
    margin-right: 20px;
}

.about-text {
    flex: 1;
}

footer {
    background-color: #A8AD97;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 14px;
}