@font-face {
    font-family: "PixelFont";
    src: url("../fonts/dogicapixel.ttf") format("truetype");
}

body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin: 0;
    overflow-x: hidden;
    font-family: "PixelFont", monospace;
    letter-spacing: 1px;
    background-color: #0d001a;
}

/* P A R A L L A X */

.parallax-container {
    position: relative;
    width: 100vw;
    height: 736px;
    overflow: hidden;
    image-rendering: pixelated;
    transform-origin: center;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: -250%;
    width: 500%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: auto 100%;
    transform-origin: center;
    transition: transform 0.5s ease-out; /* Animation für weichen Übergang */
}

#gameCanvas{
    position: absolute;
    z-index: 999;
}