/*
Web fonts from THE OLDSCHOOL PC FONT RESOURCE
https://int10h.org/oldschool-pc-fonts/readme/#web_usage
*/
@font-face {
    font-family: IBMVGA;
    src: url(WebPlus_IBM_VGA_8x16.woff) format('woff');
    font-weight: normal;
    font-style: normal;
    transform: scaleX(0.6667);
}

/* cover image palette
#4d4d4e gray background
#00bef3 blue in WORLD
#ffea00 yellow
#ffffff white stars
*/

body {
    background-color: #4d4d4e;
}

body > .container {
    padding: 20px 0px;
}

h1 {
    font-family: IBMVGA;
    color: #00bef3;
}

nav.navbar {
    background-color: #00bef3;
    font-family: IBMVGA;
    color: #ffffff;
}

.navbar a {
    color: #ffea00;
    text-decoration: none;
}

/* Sticky footer styles
https://getbootstrap.com/docs/4.1/examples/sticky-footer-navbar/
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
    font-size: 18px;
}

body {
    /* Margin bottom by footer height */
    margin-top: 24px;
    margin-bottom: 24px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 30px;
    line-height: 30px;
    /* Vertically center the text there */

    background-color: #00bef3;
    font-family: IBMVGA;
    color: #ffffff;
}

.footer > .container {
    background-color: #00bef3;
    font-family: IBMVGA;
    color: #ffffff;
}

.footer a {
    color: #ffea00;
    text-decoration: none;
}

