body {
    margin: 0;
    padding: 0;
    background-color: rgb(70, 70, 70);
}


/* Container som håller allt */

#container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}


/* Vänster panel */

#vänsterPanel {
    width: 300px;
    height: 100vh;
    background-color: #0b255e;
}


/* Game wrapper (mitten) */

#gameWrapper {
    position: relative;
    width: 500px;
    height: 100vh;
    background-color: blueviolet;
}


/* Canvas */

#myCanvas {
    display: block;
    background-color: #f0f0f0;
    margin-top: 60px;
    margin-left: 50px;
}


/* Game Over ruta */

#gameOverDiv {
    position: absolute;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    top: 40%;
    left: 50%;
    height: 75px;
    width: 300px;
    line-height: 75px;
    background-color: red;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    display: none;
}


/* Höger panel (inställningar) */

#inställningCss {
    width: 300px;
    height: 100vh;
    background-color: #0b255e;
}

#hastighetButton {
    position: relative;
}

#hastighetDiv,
label {
    font-size: 24px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
}


/* Rubriker */

h2 {
    margin: 0;
}


/* Poäng */

#poäng {
    position: absolute;
    top: 30px;
    right: 10px;
    font-size: 24px;
    font-family: sans-serif;
    color: black;
    font-weight: bold;
}


/* Tid */

#time {
    position: absolute;
    top: 30px;
    right: 130px;
    font-size: 24px;
    font-family: sans-serif;
    color: black;
    font-weight: bold;
}


/* Knappar */

button {
    text-decoration: none;
    position: absolute;
    font-size: 24px;
    border: solid black 2px;
}


/* Specifika knappar */

#tryAgainButton {
    top: 50%;
    left: 35%;
    width: 150px;
    height: 50px;
    display: none;
}

#startButton {
    bottom: 5.5px;
}

#stopButton {
    left: 64.5px;
    bottom: 5.5px;
}

#inställningButton {
    position: absolute;
    bottom: 37px;
    width: 130px;
}