.snow-container {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .snow {
    position: fixed;
    width: 3px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    pointer-events: none;
    animation: snowfall linear infinite;
  }
  
  @keyframes snowfall {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(100vh);
    }
  }
  
  .snow-container2 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .snow2 {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    pointer-events: none;
    animation: snowfall2 linear infinite;
  }
  
  @keyframes snowfall2 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(6275px);
    }
  }

  .snow-container3 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .snow3 {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    pointer-events: none;
    animation: snowfall3 linear infinite;
  }
  
  @keyframes snowfall3 {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(1820px)
    }
  }
  .lol {
    background-color: #6b61ff;
    width: 150px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
  }
  
  .was{
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  @keyframes was{
    from {
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }
    to {
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
  }

  