/* Import the Lufga font */
@font-face {
    font-family: 'Lufga';
    src: url('/css/fonts/LufgaRegular.woff2') format('woff2'),
         url('/css/fonts/LufgaRegular.woff') format('woff'),
         url('/css/fonts/LufgaRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
#mouse-shadow {
  position: fixed;
  left: 0;
  top: 0;
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 9;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(120, 53, 207, 0.877) 33%, rgba(54, 25, 170) 60%, rgb(47, 21, 152) 100%);
  
  transition: left 0.25s cubic-bezier(0.22, 1, 0.36, 1), top 0.25s cubic-bezier(0.22, 1, 0.36, 1);
 
  filter: blur(8px);
  mix-blend-mode: lighten;
  box-shadow: 0 0 60px 20px rgba(101,69,229,0.10);
}


body {
    font-family: 'Lufga', sans-serif !important;
}

html {
  scroll-behavior: smooth;
}
