@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

h1, h2, h3, h4, h5, h6{font-family: 'Inter', serif;}

h1{font-weight:800;}
h2{font-weight: 200;}
h4{font-weight: normal;}
strong{font-weight: 800;}

@media screen and (min-width: 768px)

{

h1{font-size: 60px;}
h2{font-size: 40px;}

}


@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#block-1732607865026 .block{animation: pulse 3s linear infinite; transition: all 0.3s ease;}