* {
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: darkgray;
    flex-direction: column;
    font-family: 'Roboto', sans-serif;
}

h1:first-of-type {
    font-size: 80px;
    position: absolute;
    top: 30px;
}

h1.score {
    font-size: 50px;
    position: absolute;
    top: 150px;
    display: none;
}

canvas {
    border: 4px solid white;
}

.buttons {
    border: 4px solid white;
    width: 1000px;
    height: 50px;
    display: flex;
    justify-content: space-between;
}

.buttons button {
    width: 100%;
    border: 5px solid #000;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 800;
    transform: scale(1);
    transition: .2s;
    font-family: 'Roboto', sans-serif;
}

button:nth-child(2) {
    border-left: 2px solid black;
    display: none;
}

button:active {
    transform: scale(.96)
}