/* styles.css */
@font-face {
  font-family: 'Aptos';
  src: url('../fonts/Aptos.ttf') format('ttf'),
       url('../fonts/Aptos.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Aptos';
  src: url('../fonts/Aptos-Bold.ttf') format('ttf'),
       url('../fonts/Aptos-Bold.ttf') format('ttf');
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: 'Aptos', sans-serif;
}
  
  html {
    
    scroll-behavior: smooth;
  }
  .video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
  
  .video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  
  /* Add other global styles here */