body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

#gameArea {
    position: relative;
    width: 400px;
    height: 600px;
    border: 2px solid #333;
    overflow: hidden;
    background-color: #fff;
}

#basket {
    position: absolute;
    width: 100px;
    height: 20px;
    background-color: #3498db;
    bottom: 0;
    left: 150px;
}

#apple {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: none; /* Initially hidden */
}

h2 {
    margin-top: 20px;
}
