@layer components {
  .snowflake {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 1em;
    user-select: none;
    z-index: 1000;
    pointer-events: none;
    animation: fall linear forwards;
  }

  @keyframes fall {
    to {
      transform: translateY(105vh);
    }
  }

  .icon {
    font-size: 4rem;
  }
}