  body {
    margin: 0;
    background: #001829;
    overflow: hidden;
    color: white;
    font-family: Arial;
  }

  /* kontener */
  .snow {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* 20 płatków */
  .flake {
    position: absolute;
    top: -10%;
    color: white;
    opacity: 0.8;
    animation: fall linear infinite;
  }

  /* animacja spadania */
  @keyframes fall {
    0%   { transform: translateY(-10vh); }
    100% { transform: translateY(110vh); }
  }
  
  /* Mikołaj */
  .santa {
    position: fixed;
    top: 50%;
    left: -200px; /* schowany poza ekranem */
    transform: translateY(-50%);
    width: 180px;
    animation: slide 5s ease-in-out infinite;
    z-index: 10;
  }

  @keyframes slide {
    0%   { left: -220px; }   /* całkowicie schowany */
    20%  { left: 0px; }       /* wysunięty */
    40%  { left: 0px; }       /* zostaje chwilę */
    60%  { left: -220px; }    /* chowa się */
    100% { left: -220px; }    /* czeka do początku */
  }