.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.5rem;
}

.navbar-viewin {
    padding: 0 16px;
    z-index: 1000;
    margin-bottom: 0;
    min-height: 48px;
    border: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background-color: #f2304d;
}

.logo-container a {
    display: flex;
    align-items: center;
    padding: 2px 8px;
    margin: 4px 2px 4px -8px;
    border-radius: 4px;
}

.logo {
    display: inline-block;
    background-image: url('../public/logo.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 25px;
    height: 25px;
    filter: brightness(10);
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }
}