Tea Education

  • A Lesson in tea buying 2/3: Dan Cong

    The second part of our three post serious is the shortest, but left me with the most unwanted tea.I don’t really care for Dan Congs. I know this is...
/* 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