body {
    text-align: center;
    font-family: Arial;
  }

  

  
.item {
    position: absolute;
    width: 50px;
    height: 50px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    pointer-events: none;
}

  #startScreen, #gameOverScreen {
    text-align: center;
    margin-top: 50px;
  }
  
  button {
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
  }
  
  #gameArea {
    width: 400px;
    height: 400px;
    border: 2px solid #333;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    background: #f0f8ff;
  }
  
  #basket {
    width: 80px;
    height: 40px;
    background: brown;
    position: absolute;
    bottom: 10px;
    left: 160px;
    border-radius: 10px;
  }
  
#globalLeaderboard, #personalLeaderboard {
    margin: 0 auto;
}