body {
    display: flex;
    flex-direction: column;
    background-color: #0B0612;
    color: #F2E9D0;
    margin: 0;
    height: 100%;
}

img {
    max-width: 100%;
}

header {
    margin: 50px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #6D7A6F;
}

header h1 {
    align-content: center;
    margin-right: 50px;
}

header img {
    max-width: 25%;
    margin-bottom: 30px;
}

header a {
    text-decoration: none;
    color: #F2E9D0;
}

header a:hover {
    text-decoration: underline;
}

header nav {
    display: flex;
    gap: 2em;
}

.banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

main {
    display: flex;
    flex-direction: column;
    margin: 50px;
    max-width: 1150px;
}

.main-layout {
    display: flex;
}

aside {
    margin: 50px;
}

footer {
    background-color: #6D7A6F;
    display: flex;
    flex-direction: column;
    text-align: center;
}