body {
    background-image: url("assets/img/bg.jpg");
    overflow: visible;
}

.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    color: #FFF;
    font-size: 2em;
    animation: snowflakes 5s linear infinite;
}

@keyframes snowflakes {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }

body, html {
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
  height: 100%; /* Ensure body takes up full height */
  overflow: hidden; /* Prevent scrolling if video is larger than viewport */
}

video {
  position: absolute; /* Position the video behind other content */
  top: 0;
  left: 0;
  width: 100%; /* Make the video fill the entire width of the page */
  height: 100%; /* Make the video fill the entire height of the page */
  object-fit: cover; /* Ensure the video covers the entire page while maintaining aspect ratio */
  z-index: -1; /* Place the video behind other content */
  
  }
