body {
    margin: 0;
    height: 100vh;
    background-color: #293462;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .scene {
    position: relative;
    text-align: center;
  }
  
  .icecream {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .scoop {
    width: 120px;
    height: 200px;
    background-color: #FFF1C1;
    border-radius: 60px 60px 20px 20px;
    z-index: 1;
    animation: melt 3s forwards;
  }
  
  .stick {
    width: 30px;
    height: 80px;
    background-color: #FE5F55;
    border-radius: 0 0 15px 15px;
    margin-top: -5px;
    z-index: 0;
  }
  
  .sun {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 100px;
    height: 100px;
    background: #ffcc33;
    border-radius: 50%;
  }

  button {
    margin-top: 20px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #333;
    color: white;
  }

  @keyframes melt {
    from {
      height: 160px;
    }
    to {
      height: 00px;
      border-radius: 40% 40% 30px 30px;
    }
  }


  