Blog

  • A visit to Jian Dou

    Today I came back from the Anxi city of Jian Dou. Jian Dou is a small village in the inner mountains of Anxi that produces Tie Guan Yin.  I spent t...
  • Lesson in Tea Buying 3/3: Tie Guan Yin

    For those that don't know, I am a huge fan of Tie Guan Yin and am on the hunt for a truly great Tie Guan Yin. For a brief moment last summer I tho...
/* Pine tree swaying animation */ @keyframes pine-sway { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(1deg); } 75% { transform: rotate(-1deg); } } .pine-background { animation: pine-sway 4s ease-in-out infinite; transform-origin: bottom center; } /* Stagger multiple trees */ .pine-background:nth-child(2) { animation-delay: 0.5s; } .pine-background:nth-child(3) { animation-delay: 1s; }
html