/* Global Styles */
/* Add Mulish font (formerly Muli) */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Mulish', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mulish', sans-serif;
}
.circular-loader {
    position: relative;
    top: 2px;
    width: 15px;
    height: 15px;
    border: 2px solid #FFF;
    border-bottom-color: #b4b4b4;
    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);
    }
} 