/* Apply Montserrat font globally to the body */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Apply Montserrat font to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold weight for headings */
}

/* Apply Montserrat font to paragraph, links, and text elements */
p, li, span, a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400; /* Normal weight for body text */
}

.navbar-nav {
    gap: 8px; /* Equal spacing between items */
}

.nav-link {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bolder;
    color: #303030 !important; /* Contrasting color */
    transition: color 0.3s;
}

.nav-link:hover {
    color: #000000 !important;
    background-color: rgba(80, 78, 78, 0.256);
    border-radius: 5px;
}


