:root {
    --normal-color: #ffa03c;
    --highlight-color: #007dff;
}

body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #000;
    color: var(--normal-color);
    display: flex;
    flex-direction: column;
    font-family: monospace;
}

span.project-name {
    color --highlight-color;
}

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

a:hover {
    color: #fff;
}

body > header {
    flex: 0 0 auto;
    align-self: center;
}

img {
    width: 25em;
    max-width: 100%;
}

body > div {
    flex: 1 1 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.distillery, .about {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.description {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 45em;
    text-align: justify;
}
