body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#floating-image {
    position: absolute;
    width: 256px;
    height: 256px;
    cursor: pointer;
    user-select: none; /* Prevent image from being selected */
}

.monster {
    position: absolute;
    width: 32px;
    height: 32px;
    pointer-events: none; /* Prevent interaction with the monster */
}

#score-counter {
    position: absolute;
    top: 50%; /* Center vertically relative to the floating image */
    left: 50%; /* Center horizontally relative to the floating image */
    transform: translate(-50%, -50%); /* Center the score counter */
    font-size: 24px;
    color: yellow; /* Yellow text */
    font-weight: bold;
    pointer-events: none; /* Prevent interaction with the score counter */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a shadow for better visibility */
}
