/* navbar */
.navbar {
    background-color: black;
    border-bottom: 4px solid;
    border-image: linear-gradient(to right, blue, magenta);
    border-image-slice: 1;
}
.nav-logo {
    margin-right: 12px;
    height: calc(56px - 1rem);
}
a.navbar-home {
    text-decoration: none;
    color: white;
    display: flex;
}
.navbar-container {
    margin: 0 1em;
    max-width: unset; /* Overrides container max-width */
}
.navbar-toggler {
    border: none;
}
@media screen and (max-width: 576px) {
    .navbar-brand {
        display: none; /* Hide brand on small screens */
    }
}