/* BEGIN FONT IMPORTS */

@font-face {
    font-family: 'LeagueGothic';
    src: url(../Fonts/LeagueGothic-Regular.otf);
}
@font-face {
    font-family: 'Roboto';
    src: url(../Fonts/Roboto-Regular.ttf);
}

/* BEGIN PAGE SETUP CSS */
* {
    text-decoration: none;
    font-weight: normal;
    color: inherit;
    font-style: normal;
    text-decoration: none;
}

body {
    background-color: #2b2b2b;
    text-align: center;
    color: #ffffff;
    width: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'Roboto';
    position: relative;
    height: 90vh;
    top: 5vh;
}
.Flex_Break {
    width: 100%;
    height: 0;
}
/*BACK BUTTON CSS */
#Back {
    text-align: center;
    background-color: #b2b2b2;
    height: auto;
    width: auto;
    box-shadow:  0px 10px 25px 1px #000000;
    position: fixed;
    left: 5vw;
    bottom: 6vh;
    transition-duration: .25s;
    border-radius: 100px;
    z-index: 999999;
}
#Back a{
    font-size: 3vh;
    font-family: 'LeagueGothic';
    font-weight: normal;
    color: #000000;
    transition: .25s;
    padding: 2vh;
}
#Back:hover {
    transform: scale(1.1);
    transition: .25s;
}

#TitleBar {
    height: 5vh;
    width: 100%;
    z-index: 888888;
    background-color: #000000;
    display: inline-block;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    box-shadow:  0px 5px 25px 1px #000000;
}

/* NAV BAR CSS */
#NavBar {
    height: 5vh;
    width: 100%;
    z-index: 888888;
    background-color: #000000;
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    box-shadow:  0px -5px 25px 1px #000000;
}
#NavBarWidthLimiter {
    max-width: 1500px;
    height: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.NavButton {
    width: auto;
    height: 100%;
    align-items: center;
    transition: .25s;
}
.NavButton:hover {
    opacity: 50%;
    transition: .25s;
}
.NavButton h1, .NavButton img{
    font-size: 2.5vh;
    float: left;
    margin: auto;
    height: 2.5vh;
    line-height: 108%;
    font-family: 'LeagueGothic';
    font-kerning: none;
    padding-top: 1.25vh;
}
#BottomBumper {
    display: none;
    position: static;
    height: 5vh;
    width: 100%;
}
/* SMALL SCREEN CONDITIONALS */
@media (max-width: 3000px) {
    #BottomBumper {
        display: inline-block;
    }
}
@media (max-width: 600px) {
    #BottomBumper {
        height: 8vh;
    }
    body {
        top: 8vh;
        bottom: 8vh;
        height: 84vh;
    }
    #Back {
     display: none;
    }
    #TitleBar {
        height: 8vh;
    }
    #NavBar {
        height: 8vh;
    }    
    .NavButton h1, .NavButton img{
        font-size: 4vh;
        float: left;
        margin: auto;
        height: 4vh;
        line-height: 108%;
        font-family: 'LeagueGothic';
        font-kerning: none;
        padding-top: 2vh;
    }
}