/* Import Montserrat from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #000;
}

a {
    color: rgb(32, 58, 255);
}

a:hover {
    color: #B1D600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', Arial, sans-serif;
}

.nav-link.active {
    color: #B1D600 !important;
    font-weight: bold;
    background: rgba(32, 58, 255, 0.08);
    border-radius: 0.25rem;
}