/* formatting for the entire game*/

body {
    color: #ffffff;
    background-color: #080747;
    user-select: none;
}


/* sometimes parts of this are redefined to look better on the specific page */

#backArrow {
    position: absolute;
    height: 350px;
    width: auto;
    border-radius: 500px;
    border: 5px solid #00ff40;
    cursor: pointer;
    left: 70%;
    top: 60%;
    background-color: #ffffff;
}


/*making it bigger about its center*/

#backArrow:hover {
    transform: scale(1.25, 1.25);
    -webkit-user-drag: none;
}

#banner {
    background-position: center;
    width: 102%;
    height: 35%;
    margin: -1.5% -1.5% 0vw -1.5%;
    background-size: cover;
    z-index: 2;
    -webkit-user-drag: none;
}


/* formatting for the game menu*/

#gameMenuContainer {
    z-index: 14;
    float: left;
    width: 102%;
    height: 50px;
    margin-left: -1.5%;
    background-color: #005586;
}

#gameMenuChoice {
    z-index: 15;
    position: absolute;
    right: 43.75%;
    width: 220px;
    height: 40;
    margin-top: .20%;
    border: #00395a solid 3px;
    font-size: 30pt;
    text-align: center;
    background-color: #009df8;
}

#gameMenuChoice:hover {
    background-color: #42b0f0;
    font-weight: bold;
    cursor: pointer;
}

#gamesContainerInput {
    display: none;
    position: absolute;
    width: 102%;
    height: 400px;
    margin-left: -1.5%;
    background-color: #012d46;
    border-top: 5px solid #001d2e;
    border-bottom: 5px solid #001d2e;
    z-index: 12;
}


/* game option formatting 
        centered on page

        gets bigger on hover
*/

.gamesContainer {
    padding-top: 5px;
    display: flex;
    margin-top: 100px;
    justify-content: space-around;
}

.game {
    width: 350px;
    height: 150px;
    border: 10px #5f023b dashed;
    padding: 20px;
}

.game:hover {
    transform: scale(1.15, 1.15);
    border: 10px #f120a1 solid;
}