body {
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100vh;
    position: relative;
    perspective: 800px;
  }
  
  h1 {
    color: #ffffff;
    letter-spacing: 2px;
    position: absolute;
    padding-left: 30px;
    padding-top: 150px;
    z-index: 2;
  }


  .box {
    width: 200px;
    height: 200px;
    background-image: url('img/gift1.png');
    background-size: cover;
    background-position: center;
    cursor: pointer;
    margin-bottom: 40px;
    z-index: 1;
  }
  
  .box:hover {
    transform: scale(1.2);
  }

  .star {
    position: absolute;
    width: 50px;
    height: 50px;
    transition: transform 0.5s ease-in-out, opacity 0.2s ease;
    pointer-events: all; /* אפשרות ללחוץ על התמונה */
    transform-origin: center;
    z-index: 4;
  }

  .star:hover {
    filter: brightness(1.3);
    z-index: 5;
  }

  .dots {
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 80%;
    box-shadow: 0 0 15px 4px rgb(255, 239, 196);
    position: absolute;
    transition: transform 1s ease, opacity 1s ease;
    z-index: 3;
  }
  