body{
    text-align: center;
    font-family: "Century Gothic";
}
h1{
    font-size: 50px;
    color:black;
}
button{
    font-size: 20px;
    color: rgb(0, 0, 0);
    border-color: black;
    border-width: 2px;
    border-radius: 6px;
    font-family: 'Century Gothic';
    font-weight: 1000;
    background-color: rgb(231, 231, 231);
    cursor: pointer;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 2px 2px black;
    transition: transform .2s
}
button:hover{
    transform: scale(1.5)
}
button:active{
    transform: scale(1.3)
}
.buttonContainer{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 154px;
    margin: 20px auto;
}
.buttonContainer button{
    flex: 1;
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
    text-align: center;
}
#gameCanvas {
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #ccc;
    background-color: #fff;
}
::-webkit-scrollbar{
    display: none;
}
::-webkit-scrollbar-track{
    display: none;
}
::-webkit-scrollbar-thumb{
    display: none;
}
::-webkit-scrollbar-thumb:hover{
    display: none;
}
::-webkit-scrollbar-thumb:active{
    display: none;
}