/*
 * Globals
 */
@font-face {
    font-family: "VT323";
    font-style: normal;

    font-display: swap;
    src: url("VT323.ttf") format("truetype");
}

/* Links */
a,
a:focus,
a:hover {
    color: #fff;
}

/*
 * Base structure
 */
html,
body {
    height: 100%;

    font-family: "VT323", monospace;

    background-color: #111;
}

body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;

    color: #fff;
    box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
    text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
