.gameMenuContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--game--Screen--Color);
    display: flex;
    align-items: center;
    flex-direction: column;

}

.gamePage{
    z-index: 4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--game--Screen--Color);
    display: flex;
    align-items: center;
    flex-direction: column;
}

.gameTitle{
    margin: 2rem 2rem 1.2rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.gameTitle .line{
    width: 100%;
    position: absolute;
    top: 0.5em;
    left: 0;
    z-index: 10;
    border-top: 5px solid black;
}

.gameTitle .line1{
    position: relative;
    z-index: 11;
    padding: 0 .2em;
    background-color: var(--game--Screen--Color);
}


#gameMenuCanvas{
    border: 4px solid #333;
    border-radius: 4px;
    margin-bottom: 1.3rem;
}

.hidden {
    display: none;
}

.gameButton{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 4px solid rgb(50, 50, 50);
    background-color: rgb(237, 202, 72);
    border-radius: 2px;
    padding: .4em;
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.row{
    margin: .5em 0;
    display: flex;
    justify-content: center;
    padding: 0 50px;
    width: 100%;
    align-items: center;
}

.row .arrow{
    height: 4rem;
    width: 3rem;
    cursor: pointer;
}
