body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header,
footer {
    background-color: #4CAF50;
    color: #fff;
    padding: 1em;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.score-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

button {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.game-board {
    position: relative;
    width: 400px;
    height: 400px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #fff;
}

.basket {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    font-size: 2em;
}

.fruit {
    position: absolute;
    width: 30px;
    height: 30px;
    font-size: 2em;
    animation: fall 2s linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

#gameOver {
    display: none;
    font-size: 1.5em;
    color: red;
}
