@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none;
}


* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

font-bold {
    font-weight: 500;
}

font-extrabold {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}



@keyframes bgZoom {
    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

.animate-bg-zoom {
    animation: bgZoom 6s ease-out forwards;
}


@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.15;
       
    }
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.5em;
    background: currentColor;
    vertical-align: middle;
    animation: blink 1.4s ease-in-out infinite;
}