 html,
 body {
     font-family: "Inter", sans-serif;
     font-optical-sizing: auto;
     font-style: normal;

 }

 button {
     cursor: pointer;
 }

 .font-secondary {
     font-family: "STIX Two Text", serif;
     font-optical-sizing: auto;
     font-style: normal;
 }

 @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .animate-scroll {
      animation: scroll 15s linear infinite;
    }