@font-face {
    font-family: "UbuntuBold";
    src: url("fonts/Ubuntu-Bold.ttf");
}
@font-face {
    font-family: "UbuntuLight";
    src: url("fonts/Ubuntu-Light.ttf");
}
html {
    box-sizing: border-box;
    font-size: 20px;
}
*, *:before, *::after {
    box-sizing: inherit;
}
body {
    color: #E5E5E5;
    background: #030406;
    margin: 0;
    padding: 0;

    /*font-size: 14pt;*/
    font-family: "UbuntuLight", sans-serif;
}
a {
    color: #00CBF8;
    text-decoration: none;
}
a:visited {
    color: #038baa;
    text-decoration: none;
}
#page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
}
#logo {
    display: flex;
    justify-content: center;
    align-content: center;
}
#logo-link {
    display: flex;
    justify-content: center;
    align-content: center;
}
#logo img{
    align-self: center;
    height: 8vh;
}
.menu-spacer {
    flex-grow: 1;
    flex-basis: 128px;
}
#main-menu {
    display: flex;
    flex-basis: 512px;
    flex-grow: 4;
}
ul.menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding:0;
    align-items: stretch;
    flex-grow: 1;
}
li.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-basis: 128px;
    flex-grow: 1;
}
li.menu-item a {
    color: inherit;
}
li.menu-item.active {
    font-family: "UbuntuBold", sans-serif;
    color: #00CBF8;
    background: linear-gradient(0,#004452,#00445200);
    border-bottom: 3px solid #00CBF8;
}
/*
li.menu-item:hover {
    font-family: "UbuntuBold", sans-serif;
    color: #00CBF8;
    background: linear-gradient(0,#004452,#00445200);
    border-bottom: 3px solid #00CBF8;
}
*/
#page-content {
    display: flex;
    min-height: 80vh;
    justify-content: center;
    align-items: center;
    /*padding: 50px 0;*/
}
#page-wrapper {
    background-image: url("images/page_bg.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#page-content .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: space-evenly;
    /*justify-content: center;*/
    padding: 25px;
    /*background: #0F0F0F;*/
    /*border: 1px solid #C4C4C43D;*/
}
.page-heading {
    color: #00CBF8;
    text-align: center;
    margin: 0;
}
.page-heading h1 {
    font-size: 2.8rem;
    font-weight: normal;
    margin: 0;
}
.page-heading::after {
    content: "";
    display: inline-block;
    text-align: center;
    width: 80px;
    height: 8px;
    background-color: #00CBF8;
}
.game-play-button {
    min-width: 128px;
    text-align: center;
    margin: 0 5px;
    padding: 10px;
    border: 1px solid #CDCDCD;
    border-radius: 6px;
}
a.game-play-button, a.game-play-button:visited {
    color: inherit;
}
#page-footer {
    display: flex;
    flex-direction: column;
    min-height: 10vh;
    justify-content: space-evenly;
    align-items: center;
    color: #646464;
    font-size: 0.8rem;
}
#page-footer .footer-row {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;

    width: 90%;
    max-width: 800px;
}
#page-footer .footer-row .footer-column{
    flex-basis: 250px;
    flex-grow: 1;
    text-align: center;
}
#page-footer a, #page-footer a:visited {
    color: inherit;
}
#page-footer p{
    margin: 0;
}

@media screen and (min-width: 768px) {
    #page-content .wrapper {
        width: 90%;
        padding: 0;
        /*flex-direction: row;*/
    }
}

@media screen and (min-width: 1024px) {
    #page-content .wrapper {
        width: 90%;
        /*flex-direction: row;*/
    }
}

@media screen and (min-width: 1200px) {
    #page-content .wrapper {
        width: 66.666666%;
        /*flex-direction: row;*/
    }
}
