*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

body{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background-color: #2e2b3b;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transform: translate(0%, 3%);
}
h2{
    text-align: center;
    padding-bottom: 10px;
    color: white;
}
.controlButtons{
    padding-top: 40px;
}
.controlButton{
    width: 60px;
    height: 60px;
    font-size: 20px;
    border-radius: 10px;
    border: solid none;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
}
.buttonImage{
    filter: invert(1);
    width: 50px;
}
#tetris{
    background-color: #393740;
    box-shadow: 0 0 10px 2px #d3d3d3a4;
}