body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    text-align: center;
}

#flower-bouquet {
    width: 50px;
    height: 50px;
    background-color: pink;
    border-radius: 50%;
    position: absolute;
    top: -60px;
    left: 50%;
    transition: top 1s;
    cursor: pointer;
}

#score {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

#start-btn {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

#start-btn:hover {
    background-color: #45a049;
}
