@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

.font-tajawal{
    font-family: "Tajawal", sans-serif;
}

.font-lexend{
    font-family: "Lexend", serif;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Lexend", 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;
    }
}