body{
    font-family: 'Inter', sans-serif;
    font-family: 'Montserrat', sans-serif;
}

.logo {
    max-height: 50px; /* Adjust the size of the logo */
}
.navbar {
    justify-content: center;
}
.signin button{
    border-radius: 6px;
    background: var(--main, linear-gradient(90deg, #00DBDE 0%, #0057FF 100%));
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    border: none;
    font-weight: 600;
    font-size: 16px;
}
a.nav-link{
    font-weight: 500;
    color: #6B7280;
}

@media (max-width: 991px) {
    .navbar-brand{
        order: 2;
    }
    .navbar-collapse{
        order: 4;
    }
    .signin{
        order: 3;
    }
}