body {
  margin: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
font-family:Lexend;
}

.game-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  background-color: #222;
  image-rendering: pixelated;
}

#music-controls {
    position: absolute;
    bottom: 10px;
    /* right: 10px; */
    background: #0000;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-family: sans-serif;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    text-align: center;
}

#now-playing
{
color: #777777;
    font-size: 13px;
}

#playpause, #nexttrack
{
    background-color: black;
    border: 0;
    color:#aaaaaa;

}

#volume
{
       background-color: black;
    border: 0;
    accent-color: #45454522;
    position: relative;
    top: 3px;
}

.inventory-item {
  width: 48px;
  height: 48px;
  margin: 4px;
  border-radius: 4px;
  cursor: pointer;
}