*,
::after,
::before {
    box-sizing: border-box;
}

:root {
    --primary: #201e5a;
    --black: #444444;
    --heading-font: "Roboto",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
    --white:#fff;
}


::-webkit-scrollbar {
    border-radius: .375rem;
    width: .375rem;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: .375rem;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0 var(--white);
}


body {
    margin: 0;
    overflow-y: auto;
    position: relative;
    font-family: "Roboto",  sans-serif;
}

a {
    text-decoration: none;
}

.text-primary{
    color: var(--primary) !important;
}

