html`
<style>
.stagger-box {
--box-color: hsl(150,50%,50%);
transform: scale(0.01, 0.01);
animation: present-yourself 1s ease forwards;
}
.stagger-box:nth-of-type(2) { animation-delay: 0.1s; }
.stagger-box:nth-of-type(3) { animation-delay: 0.2s; }
</style>
`