body {
    margin: 0;
    overflow: hidden;
    text-align: center;
    font-family: Arial, sans-serif;
}
body h1 {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(223, 106, 51);
}
#gameArea {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: lightblue;
}
.basket {
    position: absolute;
    bottom: 10px;
    width: 80px;
    height: 40px;
    background-color: brown;
    left: 50%;
    transform: translateX(-50%);
}
.fallingObject {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: red;
    border-radius: 50%;
}
