.background {
    background: radial-gradient(at 53% 78%,  #ffff004d  0px,  transparent  50%), radial-gradient(at 71% 91%,  #33ff004d  0px,  #00000000  50%), radial-gradient(at 31% 91%,  #ff80002b  0px,  transparent  50%);}

* {
    font-family: Poppins;
}


.loader {
    width: 24px;
    height: 24px;
    border: 3px solid #EF8915;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.blog h2,h1,h3,h4,h5,h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    padding-top: 24px;
    padding-bottom: 16px;
    color: #0F0E0C;
}
.blog p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #334155;
}


*::-webkit-scrollbar {
    width: 6px;
    cursor: context-menu;
}

*::-webkit-scrollbar-track {
    background-color: #faf5ee;
    border-radius: 100px;
    cursor: context-menu;
}

*::-webkit-scrollbar-thumb {
    background-color: #FCB576;
    border-radius: 100px;
    cursor: context-menu;
}


.back-orange {
    background-color: #FFAF66;
}
