
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

 
 body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
 }


 body,
html {
    overflow-x: hidden;
    width: 100vw;
    height: auto;
}

.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
        transform: translateY(100vh);
    }
}

@keyframes diagonal-fall {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0.25;
        transform: translate(10vw, 100vh);
    }
}

 
 
 .nav-bg {
    background-color: white;
 }

  .navbar .navbar-nav .nav-link {
    color:  rgb(34, 18, 18);;
    font-size: 16px;
    padding: 0.5em 1em;
    font-weight: bold;
  }

  .nav-link {
    color:  rgb(34, 18, 18);;
    font-size: 16px;
    font-weight: bold;
  }

  .nav-link:hover {
    color: #c20808;
  }

  
  .banner {
    background-color: rgb(34, 18, 18);
    color: #f1f1f1;
    height: 100vh;
  }
  .container {
    height: 100vh;
  }
  .row {
    align-items: center;
    height: 100vh;
    overflow:hidden;
  }
  .btn {
    padding: 0.5em 1.5em;
    border-radius: 2em;
  }
  
  @media screen and (min-width: 769px) {
    p {
      font-size: 1.2em;
    }
  }
  @media screen and (max-width: 768px) {
    .banner {
      padding: 2em;
      text-align: center;
    }
  }
  @media screen and (max-width: 567px) {
    img {
      width: 70%;
    }
  }


  .navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #c20808 !important; 
}

.navbar-toggler:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #c20808 !important; 
}
  

