:root{
    --neutral-w-100: rgba(250, 250, 250, 1);
}

.snow-canvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  font-size: 8px;
  color: var(--neutral-w-100);
  pointer-events: none;
}

.btn-snow::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -7px;
    width: 80px;
    height: 14px;
    background-image: url('/assets/index/snow.png');
    background-repeat: no-repeat;
    background-size: auto 100%;
    pointer-events: none;
}