body {
      margin: 0;
      overflow: hidden;
      font-family: Arial;
      background-color: #fdf6e3;
      background-image: radial-gradient(#ffd6e0 10%, transparent 11%),
                        radial-gradient(#bae1ff 10%, transparent 11%),
                        radial-gradient(#caffbf 10%, transparent 11%);
      background-size: 60px 60px;
    }
    #ui {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0,0,0,0.5);
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      font-size: 20px;
      z-index: 1000;
      box-sizing: border-box;
      flex-wrap: wrap;
    }
    #ui > div:last-child {
      margin-right: 8px; 
    }
    #title {
      text-align: center;
      position: fixed;
      top: 50px;
      width: 100%;
      color: #333;
      text-shadow:
        0 0 5px #fff,
        0 0 10px #ffb3c6,
        0 0 20px #bde0fe;
      z-index: 1001; /* above flashlight */
    }
    .object {
      position: absolute;
      font-size: 60px;
      cursor: pointer;
    }
    .hiddenEgg {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 30px;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }
    .object:hover .hiddenEgg {
      opacity: 1;
      pointer-events: auto;
    }
    #flashlight {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      display: none;
      z-index: 500;
      background: radial-gradient(circle 120px at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    }
    #winScreen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      color: white;
      display: none;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      font-size: 30px;
    }
    button {
      padding: 10px 20px;
      font-size: 18px;
      margin-top: 20px;
      cursor: pointer;
    }
    .hiddenEgg {
      opacity: 0;
      pointer-events: none;
    }
    .object:hover .hiddenEgg {
      opacity: 1;
      pointer-events: auto;
    }
    #grass {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 80px;
      background: linear-gradient(to top, #228B22 0%, #32CD32 100%);
      z-index: 1;
    }