body {
  font-family: cursive;
    background: #f0f9ff;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
}

#top-bar {
    font-size: 20px;
    display: flex;
    justify-content: space-around;
    margin: 20px;
}

#game-area {
    width: 100%;
    height: 500px;
    background: #dfffe0;
    border: 3px solid #4caf50;
    position: relative;
    overflow: hidden;
}

.item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;
}

/* Good fruit */
.good {
    background: red;
}

/* Rotten item */
.bad {
    background: brown;
}

