
body{
    margin: 0;
    padding: 0;
    background-color: #242A32;
    color: #DDD;
    font-family: "Exo";
    width: 100%;
    height: 100%;
}
nav{
    background-color: #0A0C18;
    color: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100px;
}

a{
	color: #ff9900;
    text-decoration: none;
}


#brand-group{
    display: flex;
    font-size: 30px;
    padding-top: 10px;
}

#brand-name{
    padding-top: 1.25rem;
    padding-left: 1rem;
}

@media  only screen and (min-width:600px){
    #page-list{
        margin-left: 30px;
        margin-right: min(25px, 25%);
        font-size: 25;
        padding-top: 8px;
        overflow: hidden;
    }

    #nav-tabs{
        display: flex;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }


    #nav-tabs li{
        float: right;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 2px;
        margin-right: 2px;
        padding-top: max(1rem, 5%);
        padding-bottom: max(1rem, 5%);
        border-radius: 10px;
        transition: 0.5s;
        cursor: pointer;
    }

    #nav-tabs li:hover{
        background-color: #151e32;
    }

    #nav-tabs li a{
        display: block;
        color: #eee;
        text-align: center;
        text-decoration: none;
    }

    #nav-tabs li a:hover{
        color: #fff;
    }
}

@media only screen and (max-width:600px) {
    #page-list{
        display: none;
    }
}

#footer{
    color: #EEE;
    font-size: 14px;
    position: absolute;
    margin-bottom: -32px;
    right: 15px;
    height: 32px;
}

#footer p{
    display: inline;
}

#footer a{
    text-decoration: underline;
    color: #EEE;
    margin: 0 10px 0 10px;
    transition: 0.5s;
}

#footer a:hover{
    color: #fff;
}




/* Page specific code */

/* Home */
#splashscreen h1{
    font-size: 40px;
    text-align: center;
}


#splashscreen p{
    font-size: 20px;
    text-align: center;
}


/* Games Showcase */
#games-container {
    width: 100%;
}

#games-container h1{
    text-align: center;
}

#game-blocks{
    display: flex;
    flex-direction: row;
    flex-flow: row wrap;
    justify-content: center;
}

.games img{
    width: 200px;
    height: 200px;
    margin: 10px 10px 10px 10px;
    border-radius: 10px;
    transition: 0.5s;
}

.games img:hover{
    transform: scale(1.1, 1.1);
}


/* Webite Privacy Policy */
#privacy-policy{
    font-size: 16px;
}
#privacy-policy h1{
    font-size: 23px;
    color: #EEE;
}

#privacy-policy h2{
    font-size: 22px;
}

#privacy-policy h3{
    font-size: 21px;
}

#privacy-policy p{
    font-size: 16px;
    color: #EEE;
	margin-bottom:0px;
	margin-top:0px;
}


/* Diving Ball Privacy Policy */