/* CSS For all pages */
body {
    background-color: rgba(10, 40, 90, 1);
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
    border: 0;
}
#index-bg {
    background-color: rgba(10, 40, 90, 1);
    background-size: cover;
    height: 100vh;
}
#bubble-space-wars-bg {
    background-color: rgba(10, 40, 90, 1);
    background-size: cover;
    height: 100vh;
}
#contact-bg {
    background-color: rgba(10, 40, 90, 1);
    background-size: cover;
    height: 100vh;
}
a {
	font-family: Microsoft Tai Le;
    margin: 0;
    padding: 0;
    color: white;
}
h2 {
    font-family: Bahnschrift;
    margin: 0;
    padding: 0;
    color: white;
}
/* Navigation bar */
.navigation-bar {
	background-color: rgba(5, 24, 51, 0.8);
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    z-index: 10;
}
.navigation-bar-logo {
    height: 50px;
}
.navigation-bar-logo:hover {
    height: 50px;
    filter: contrast(1.4);
}
.navigation-bar-button {
    padding: 15px 50px;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
}
.navigation-bar-button:hover {
    background: linear-gradient(0deg, rgba(0, 150, 255, 1) 0%, rgba(0, 210, 255, 1) 100%);
    padding: 15px 50px;
}
.navigation-dropdown-button {
    position: relative;
    top: 15px;
    padding: 15px 50px;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
}
.navigation-dropdown-button:hover {
    background: linear-gradient(0deg, rgba(0, 150, 255, 1) 0%, rgba(0, 210, 255, 1) 100%);
    padding: 15px 50px;
}
.navigation-dropdown-content {
    background-color: rgba(5, 24, 51, 0.8);
    display: none;
    position: absolute;
    top: 50px;
    min-width: 160px;
    max-width: 200px;
    z-index: 10;
}
.navigation-dropdown-content a {
    padding: 10px 10px;
    text-decoration: none;
    display: block;
}
.navigation-dropdown-content a:hover {
    background: linear-gradient(0deg, rgba(0, 150, 255, 1) 0%, rgba(0, 210, 255, 1) 100%);
}
.navigation-dropdown:hover .navigation-dropdown-content {
    display: block;
}
header {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 600px;
    margin-top: 51px;
}
/* Content */
.games-middle {
    display: grid;
    grid-template-columns: 400px 400px 400px;
    row-gap: 20px;
    column-gap: 20px;
    justify-content: center;
    margin: 20px;
}
.games-middle-div {
    display: grid;
    grid-template-rows: 200px 50px 30px;
    border: solid 1px rgba(0, 210, 255, 1);
}
.games-middle-div:hover {
    box-shadow: 0 0 5px 0 rgba(0, 210, 255, 1);
}
.games-middle-div img {
    height: 200px;
    width: 398px;
}
.games-middle-name {
    background-color: rgb(5, 24, 51);
    padding: 10px;
}
.games-middle-category {
    background-color: rgb(5, 24, 51);
    padding-left: 15px;
}

/* Footer the same for all the pages */

footer {
    background: rgb(5, 24, 51);
    margin-top: 50px;
    text-align: center;
    padding: 20px;
}

/* General game page CSS */

.top-section-gp {
    display: grid;
    grid-template-columns: 600px 600px;
    row-gap: 50px;
    justify-content: center;
    margin-top: 51px;
}
.top-section-gp-text {
    margin: 10px;
}
.top-section-gp-slider {
    background: rgb(5, 24, 51);
    display: grid;
    grid-template-columns: 100px 100px 100px 100px 100px 100px;
}
/* Game page Main content */
.main-content-box {
    background-color: none;
    margin-top: 51px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
    display: grid;
    grid-template-columns: 700px 700px;
    width: 1400px;
}
.content-box-left {
    background-color: none;
}
.content-box-right {
    background-color: none;
}
.game-name {
    font-size: 40px;
    padding-top: 10px;
    padding-left: 10px;
}
.genre {
    font-size: 12px;
    padding-top: 10px;
    padding-left: 10px;
}
.game-image-leftside {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 600px;
    height: 270px;
    box-shadow: 0px 0px 10px black;
}
.game-description {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
}
.download-game-button-container {
    width: 600px;
    height: 100px;
}.download-game-button-container a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}
.download-game-button {
    background: linear-gradient(0deg, rgb(0, 150, 255) 0%, rgb(0, 210, 255) 100%);
    border-style: solid;
    border-width: 1px;
    border-color: aqua;
    width: 200px;
    height: 40px;
    position: relative;
    left: 35%;
    top: 50%;
    transform: translate(-65%, -50%);
    padding: 10px;
    text-align: center;
    line-height: 40px;
}
.download-game-button:hover {
    background: linear-gradient(0deg, rgb(50, 210, 255) 0%, rgb(50, 210, 255) 100%);
}
/* Contact page */
.contact-main-container {
    margin-top: 51px;
    width: 1200px;
    height: 600px;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}
.contact-main-container-left-right {
    display: grid;
    grid-template-columns: 500px 700px;
}
.contact-left-side {
    background-color: rgb(5, 24, 51);
    margin-top: 50px;
    height: 500px;
    text-align: center;
}
.contact-left-side img {
    margin-top: 50px;
    height: 200px;
}
.contact-left-side-text {
    background-color: none;
    margin: 50px;
    text-align: center;
}
.contact-right-side {
    background-color:rgb(5, 55, 110);
    margin-top: 50px;
    height: 500px;
    text-align: center;
}
.contact-your-name {
    width: 90%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
}
.contact-your-email {
    width: 90%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
}
.contact-message {
    width: 90%;
    height: 150px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    resize: none;
}
.contact-submit-button {
    background: linear-gradient(0deg, rgb(0, 150, 255) 0%, rgb(0, 210, 255) 100%);
    border-style: solid;
    border-width: 1px;
    border-color: aqua;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: white;
    width: 250px;
    cursor: pointer;
}
.contact-submit-button:hover {
    background: rgb(0, 210, 255);
}
/* Social media */
.sm-container {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 50px;
    width: 300px;
}
.sm-container-img {
    display: inline-block;
    height: 25px;
    margin-top: 12.5px;
    margin-left: 5px;
    opacity: 0.8;
    transition: opacity linear 0.2s;
}
.sm-container-img:hover {
    opacity: 1;
    cursor: pointer;
}
/* date/month/year */
.date-month-year {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 50px;
    padding: 15px;
}
/* ScrollBar  */
::-webkit-scrollbar {
    width: 10px;
  }
::-webkit-scrollbar-track {
    background: rgb(5, 24, 51);
}
::-webkit-scrollbar-thumb {
    background: rgb(10, 40, 90, 1);
}
::-webkit-scrollbar-thumb:hover {
    background: rgb(5, 55, 110);
}