#banner-nav {
    display: grid;
    background: #BA0D2E;
    text-align: center;
    font-size: 13px;
    grid-row-gap: 5px;
    padding: 10px 0 10px 0;
}

#banner-nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding-top: 2px;
    padding-bottom: 2px;
}

#banner-nav a:focus, #banner-nav a:hover {
    text-decoration: underline;
}

#banner-nav a:focus:not(:focus-visible) {
    text-decoration: none;
}

#banner-nav a:hover {
    cursor: pointer;
}

@media only screen and (min-width: 740px) {
    #banner-nav {
        display: flex;
        background: #BA0D2E;
        text-align: center;
        font-size: 13px;
        grid-row-gap: 5px;
        padding: 15px 0 15px 0;
        justify-content: flex-end;
    }

    #banner-nav a {
        white-space: nowrap;
        margin-right: 30px;
    }
}

@media only screen and (min-width: 800px) {

    #banner-nav {
        font-size: 14px;
    }
}

/* Small laptop screen styles */
@media only screen and (min-width: 1024px) {

    #banner-nav a {
        margin-right: 40px;
    }

    #banner-nav {
        font-size: 15px;
    }

}