body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: "VT323", monospace;
    flex-direction: column;
    gap: 10px;
    background-color: #414141;
}

#gameCanvas {
    background-color: #000000;
    /* #c4cfa3 */
    box-shadow: inset 0 0 0 5px #000000;
    /* #8b966c */
    display: grid;
    display: block;
    /* canvas e ett block-element som standard */
}

.game-border-1 {
    border: #595f43 solid 10px;
    border-radius: 30px;
    box-shadow: inset 0 0 0 10px #595f43;
}

.game-border-2 {
    border: #abb78a solid 8px;
    border-radius: 26px;
    box-shadow: inset 0 0 0 10px #abb78a
}

.game-border-3 {
    border: #8b966c solid 30px;
    border-radius: 20px;
    box-shadow: inset 0 0 0 5px #8b966c;
    /* använder box shadow för att annars kommer det finnas mellanrum mellan bordern */
    background-color: #c4cfa3;
}

.scores {
    display: flex;
    justify-content: space-between;
    width: 496px;
}

#scoreText {
    color: #abb78a;
}

#scoreText,
#highScore {
    font-size: 40px;
    font-weight: bolder;
    margin: 0;
}

#highScore {
    color: #d8ddca;
    display: none;
    /* visas först vid high score */
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    font-family: "VT323", monospace;
    font-size: 20px;
    padding: 5px 25px;
    background-color: #abb78a;
    color: #414141;
    border: 4px solid #595f43;
    border-radius: 12px;
    text-transform: capitalize;
}