:root {
    --text: #abbca4;
    --bg: #213225;
    --link: #c15636;
    --heading: #6a835d;
}

.container {
    display: flex;
    flex-flow: row wrap;
    column-gap: 3em;
}

@media only screen and (max-width: 1000px) {
    aside {
        display: flex;
        flex-flow: row wrap;
        flex-grow: 1;
        justify-content: center;
    }

    body {
        padding: 2% 3% 2.5% 2.5%;
    }
}

body {
    font: 1em "Lato", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.4;
    color: var(--text);
    background: var(--bg);
    max-width: 50em;
    text-align: justify;
    margin: auto;
}

header {
    flex-basis: 100%;
    min-width: 18em;
}

main {
    flex-basis: 50%;
    flex-grow: 1;
}

footer {
    width: 100%;
    font-size: 0.7em;
}

img {
    border: 0.06em solid white;
    max-height: 17em;
}

a {
    text-decoration: none;
    color: var(--link);
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    color: var(--heading);
}
