body {
    margin: 0;
    overflow: hidden;
    transform: scale(0.8);
    transform-origin: 0 0;
    width: 125%; /* Adjust the width to counteract the scaling */
    height: 125%; /* Adjust the height if necessary */
    font-family: Arial, sans-serif;
}

#game-container {
    position: relative;
    width: 30vw;
    height: 80vh;
    background-color: #f0f0f0;
    margin: 0 auto;
}

#target-number, #score {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    font-weight: bold;
    margin: 0 20px;
}

#score {
    left: 10px;
    transform: none;
}

#player {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #ff5722;
    border-radius: 50%;
}

#falling-numbers-display {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
}

.falling-number {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #2196f3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    animation: fall 3s linear; /* Increased speed */
}

@keyframes fall {
    from {
        top: -50px;
    }
    to {
        top: 80vh;
    }
}
