body {
    margin: 0;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    background-color: #6d5f46;
}

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

nav {
    background-color: #9d8a67;
    color: #faf9f7;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-title {
    display: flex;
    align-items: center;
}

.nav-logo-title img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

ul li {
    margin-right: 20px;
}

ul li a {
    color: #faf9f7;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

#header {
    padding: 50px 0;
    background-color: #bcaf97;
    color: #3b3426;
    text-align: center;
}

.header-texts h1 {
    margin-top: 0;
}

.content-aside {
    display: flex;
    justify-content: space-between;
}

.content {
    width: 70%;
}

.content h2 {
    color: #faf9f7; 
}

.articles {
    background-color: #bcaf97; 
    padding: 50px 0;
}

.articles img {
    width: 150px;
    height: 150px;
}

.article {
    background-color: #faf9f7;
    padding: 20px;
    margin: 10px;
    text-align: center;
}

.article h3 {
    color: #13110c; 
}

.article-long {
    padding: 30px;
}

.creativity {
    background-color: #9d8a67; 
    padding: 50px 0;
    text-align: center;
}

.creativity img{
    width: 200px;
    height: 200px;
}

.creativity h2 {
    color: #13110c; 
}

footer {
    background-color: #403829; 
    color: white;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
}

.footer-section:not(:last-child) {
    margin-right: 10px;
}

footer p, footer label {
    color: white;
}

footer form {
    margin-top: 20px;
}

footer input[type="text"], footer select, footer input[type="radio"] {
    margin-bottom: 10px;
}

.footer-credit {
    margin-top: 20px;
}

.footer-credit h3 {
    margin: 5px 0;
}