@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.ttf") format("ttf"),
    url("../fonts/Nunito-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}

/* You can add more weights later if needed */

body {
  font-family: "Nunito", sans-serif;
}

@keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .animate-spin-custom {
            animation: spin 1s linear infinite;
        }

html {
  scroll-behavior: smooth;
}