Resize your window

Cute little panda holding flower

Summary of the SVG code


<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500">
  <style>
    /* Some CSS was skipped here */

    .panda {
      transition: transform 0.3s ease-out, transform-origin 0s 0.3s;
    }
    .background-flowers,
    .front-flowers {
      transition: opacity 0.3s ease-out;
    }

    /* Breakpoints */
    /* Small */
    @media (max-width: 550px) {
      .front-flowers{opacity:0}
    }
    /* Medium */
    @media (max-width: 800px) {
      .background-flowers{opacity:0}
      .panda {
        transition: transform 0.3s ease-out, transform-origin 0s;
        transform:scale(1.4);
        transform-origin:250px 250px;
      }
    }
  </style>
  <!-- All the paths are skipped -->
</svg>
Check the source-code of the SVG