.header {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    background-color: rgb(232 154 52 / 74%);
    gap: 10px;
    margin: 10px;
    padding: 5px;
    width: 97%;
    flex-wrap: wrap;
  }
  
  body {
    background-image: url("./assets/chocolategame.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    color: black;
    font-size: 1.2rem;
  }
  
  .container {
    height: 100vh;
    width: 100vw;
  }
  
  #basket {
    position: absolute;
    width: 20%;
    top: 70%;
    left: 0;
  }
  
  .skygift {
    display: block;
    transform: translate(100%, -100%);
    animation: fall 3s linear infinite;
  }
  
  .sweets {
    width: 100vw;
  }
  
  @media screen and (max-width: 600px) {
    body {
      background-size: cover;
      position: relative;
    }

    #basket {
      width: 25%;
      top: 75%;
    }

    .header {
      gap: 20px;
      font-size: 1rem;
      flex-direction: column;
      align-items: center;
    }
    
    .sweets img {
      width: 25%;
    }

    .skygift {
      animation: fall 2s linear infinite;
    }
  }

  @keyframes fall {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(100vh);
    }
  }
