body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: black;
    color: goldenrod;
}
canvas {
    border: 5px solid #8a2be2; /* Neon purple border */
    box-shadow: 0 0 20px #8a2be2; /* Glow effect */
    border-radius: 2px;
    /* background: url(background.jpg); */
    background-size: 100% 100%;
}
#game-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
}
.scoreDisplay {
    color: goldenrod;
    font-size: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    position: absolute;
    right: 0px;
    top: -30px;
}
.debug{
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    margin-top: 10px;
    color: mediumslateblue;
    font-size: 16px;
    right: 0px;
    bottom: -30px;
    position: absolute;
    
}
#game-over {
    color: black;
    padding: 20px;
    text-align: center;
    font-size: 0.1rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    background-color: rgba(100, 0, 0, 0.6);
    position: absolute;
    translate: translate(-50%, -50%);
    top: 25%;
    border-radius: 4px;
}
#control-keys {
    margin: 40px;
    font-size: 30px;
    right: 0px;
    position: relative;
}
.key {
    color: rgba(144,238,144,0.7);
    border-width: 2px;
    border-color: rgba(0,128,0,0.5);
    border-style: solid;
    padding: 4px;
    font-family: monospace;
}
#space-key {
    padding: 4px 25px 5px 25px;
}