body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
}

#game-container {
    width: 90%;
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#game-area {
    position: relative;
    width: 100%;
    height: 300px;
    background: url('wohnung.png') no-repeat center;
    background-size: cover;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 5px;
}

.object {
    width: 80px;
    position: absolute;
    cursor: pointer;
}

#smoke-alarm { top: 20px; left: 50px; }
#extinguisher { bottom: 30px; left: 80px; }
#door { bottom: 20px; right: 30px; }
#window { top: 80px; right: 50px; }

#message {
    font-weight: bold;
    margin: 10px 0;
}

#start-button {
    padding: 10px 20px;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
}
