@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

.font-lato{
    font-family: "Lato", sans-serif;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Inter", sans-serif;
    font-style: normal;
}

.heading-white{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.heading-black{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #000;
    color: transparent;
}

.animate-title{
    left: 0;
    animation: titleSlide 2s ease-in infinite;
}

@keyframes titleSlide{
    0%{
        left: 0;
    }
    50%{
        left: calc(100% - 5px);
    }
    100%{
        left: 0;
    }
}