html, body {
    margin: 0;
    padding: 0;
    background-color: #000;
}

#GamingLogo {
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
}

#GamingLogo img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 20%;
    max-height: 20%
}

#GamingLogo h2 {
    color: #FFF;
    display: block;
    width: 100%;
    text-align: center;
    font-style: italic;
}

#NavHeaderContainer {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#NavRightContainer {
    width: 10%;
    height: 100px;
}

#NavRightContainer a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.5rem;
}

#NavRightContainer a:hover {
    color: #ff0000;
    transition-duration: 400ms;
}

#NavMiddleContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100px;
}

#NavMiddleLinksContainer {
    width: 60%;
    height: 100%;
}

#NavMiddleLinksContainer a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.5rem;
    padding: 12px;
    border-radius: 4px;
}

#NavMiddleLinksContainer a:hover {
    color: #007aff;
    transition-duration: 400ms;
}

#GetInTouch img {
    border-radius: 12px;
    max-height: 64px;
}

.ServicesPromo {
    width: 100%;
}

.ServicesPromo h1 {
    text-align: center;
}

.Service {
    Max-Width: 25%;
    color: #FFF;
}

.Service img {
    Display: block;
    max-width: 50%;
    margin: 0 auto 0 auto;
    border-radius: 12px;
}

.Service h2 {
    font-size: 2.5rem;
    text-align: center;
}

.Service ul {
    max-width: 80%;
}

.Service ul li {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

#ServicesContainer {
    display: flex;
    flex-wrap: wrap;
    padding: 24px;
}

#GetInTouch {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#GetInTouch :first-child {
    Margin-Right: 12px;
}

.MiddleAlignContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#GamesContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.GamesHeader {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
    color: #FFF;
}

.GameUnit {
    display: block;
    background-color: rgba(255, 255, 255, 1.0);
    border-radius: 8px;
    width: 400px;
    height: 400px;
    margin-bottom: 20px;
    padding: 12px;
    cursor: crosshair;
}

.GameUnit > * {
    cursor: crosshair;
}

.GameUnit h2 {
    text-align: center;
}

.GameUnit:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.GameUnit span {
    display: block;
}

.GameUnit img {
    width: 100%
}

#FooterContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    background-color: rgb(140, 140, 140, 0.6);

    font-size: 1.2rem;
    color: #FFF;
}

#FooterContainer :first-child {
    margin-left: 12px;
}

#FooterContainer :last-child {
    margin-right: 12px;
}

@media only screen and (max-width: 900px) {

    .Service {
        max-Width: 50%;
    }

    .Service h2 {
        font-size: 1rem;
    }

    .Service ul li {
        font-size: 0.75rem;
    }

    #NavMiddleLinksContainer a {
        font-size: 1rem;
    }

    #NavRightContainer a {
        color: #FFF;
        text-decoration: none;
        font-size: 1.0rem;
    }
}
