#gameContainer{
    text-align: center;
}

#gameBoard{
    border: 3px solid;
}

#scoreText{
    font-family: "Dubai Light";
    font-size: 100px;
}

#resetButton{
    font-family: "Dubai Light";
    font-size: 22px;
    width: 100px;
    height: 50px;
    border: 3px solid;
    border-radius: 15px;
    cursor: pointer;
}

#menuButton{
    font-family: "Dubai Light";
    font-size: 22px;
    width: 100px;
    height: 50px;
    border: 3px solid;
    border-radius: 15px;
    cursor: pointer;
}

#gameButton{
    font-family: "Dubai Light";
    background-color: white;
    font-size: 22px;
    width: 200px;
    height: 50px;
    border: 3px solid;
    border-radius: 15px;
    cursor: pointer;
}

p{
    font-family: "Dubai Light";
    font-size: 19px;
}

#gameScreen{
    border: 3px solid;
    width: 500px;
    height: 500px;
    margin: 0 auto;
}

.btn{
    background: none;
    border: 2px solid #000;
    font-family: "Dubai Light";
    font-size: 22px;
    padding: 12px 20px;
    min-width: 200px;
    margin: 10px;
    cursor: pointer;
    transition: color 0.4s linear;
    position: relative;
}

.btn:hover{
    color: #fff;
}

.btn::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #5b1782;
    z-index: -1;
    transition: transform 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5,1.6,0.4,0.7);
}

.btn1::before{
    transform: scaleX(0);
}

.btn2::before{
    transform: scaleY(0);
}

.btn1:hover::before{
    transform: scaleX(1);
}

.btn2:hover::before{
    transform: scaleY(1);
}