html {
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: roboto;
}

canvas {
    border: 10px solid white;
    margin-bottom: 20px;
}

h1 {
    color: white;
    text-align: center;
}

#gameControl span {
    font-size: 30px;
    color: white;
    text-align: center;
}

#gameControl {
    display: flex;
    justify-content: space-between;
}

dialog {
    padding: 0;
    border-radius: 20px;
}

#gameOver2 {
    width: 45vw;
    height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: lightgrey;
}

#gameOver2 button {
    border: none;
    transform: scale(1.8);
    padding: 0.8rem;
    margin-bottom: 30px;
    border-radius: 20px;

}

#gameOver p {
    font-size: 35px;
}

#gameOver2 h4 {
    font-size: 80px;
    color: rgb(160, 27, 27);
    margin: 0;
}