.game {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin: 0;
}

#gameCanvas {
    border: 1px solid white;
    background-color: black;
}

h1 {
    color: red;
    text-align: center;
    position: relative;
}
body {
    width: 100vw;
    background-color: black;
    background-image: url('images/background.png'); /* Path to your image */
    background-size: cover; /* This will ensure that the background covers the entire viewport */
    background-position: center; /* This centers the background image */
    background-repeat: no-repeat; /* This will prevent the image from repeating */
    background-attachment: fixed; /* This will make sure that the background is fixed when scrolling */
    z-index: 9;
}