body {
    margin: 0;
    background-color: rgb(91, 51, 30);
    color: rgb(162, 162, 162);
}

a {
    color: rgb(183, 183, 18);
}

a:visited {
    color: rgb(191, 147, 17);
}

header {
    background-color: rgb(54, 144, 26);
}

header a {
    padding: 12px;
}

header a img {
    max-height: 100px;
    max-width: auto;
}

main {
    border-top: solid 20px rgb(26, 130, 29);
    min-height: 100vh;
}

main > .container {
    background-color: rgb(79, 45, 27);
}

footer {
    background-color: rgb(95, 95, 95);
    color: rgb(176, 176, 176);
    padding: 20px;
    border-top: solid 20px rgb(113, 113, 113);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}