body {
    margin: 0;
    padding: 0;
    background-color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#gameContainer {
    position: relative;
    width: 800px;
    height: 533px; /* passend zu deinem 3:2 Bild */
}

#background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.player {
    position: absolute;
    bottom: 50px;
    left: 375px;
    width: 50px;
    height: 50px;
    background: blue;
}

.npc {
    position: absolute;
    bottom: 80px;
    left: 50px;
    width: 40px;
    height: 60px;
    background: green;
}

.enemy {
    position: absolute;
    top: 200px;
    left: 365px;
    width: 70px;
    height: 70px;
    background: red;
    opacity: 0.7; /* zunächst transparent bis zur Aktivierung */
}

.puzzle-piece {
    position: absolute;
    bottom: 150px;
    left: 200px;
    width: 30px;
    height: 30px;
    background: yellow;
}

.project-item {
    position: absolute;
    bottom: 100px;
    right: 150px;
    width: 40px;
    height: 40px;
    background: orange;
}