.snow-container {
  position: relative;
  width: 100vw;
  height: 60dvh;
  min-height: 20rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  left: 0;
  margin-left: 0;
}

.snow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: 40% 10%; /* X% from left, Y% from top */
  z-index: 0;
}

.snow-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
