:root {
    --text-color: #bbb;
    --background-color: #222;
}

html {
    height: 100%;
}

body {
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    margin: 0;
    padding: 0;
    background: var(--background-color);
    color: var(--text-color);
}

body > header {
    background: #000;
    margin: auto 0 0;
    padding: 0.2vw 1vw;
    text-align: right;
    text-transform: uppercase;
    font-size: 3vw;
    width: 100%;
    box-sizing: border-box;
    font-family: "owners-text", sans-serif;
    font-weight: 800;
    font-style: normal;
    flex: 0 1;
}

body > header a {
    color: var(--text-color);
    text-decoration: none;
}

body > header span {
    color: var(--background-color);
}

body > section {
    flex: 0 1;
}