html, body {
      margin: 0;
      padding: 0;
      height: 100%;
    }
    video.bg-video {
      object-fit: cover;
      z-index: -10;
    }
    html {
    scroll-behavior: smooth;
    }
    .co-founder img {
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.gradient-background {
    background: linear-gradient(300deg,#000000,#958fdd,#0f0669,#000000);
    background-size: 240% 240%;
    animation: gradient-animation 16s ease infinite;
  }
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }