﻿/*CSS for the announcement banners above the navigation menu*/
.banner {
    background-color: black;
    color: white;
    border-radius: unset;
}

.banner-content {
    font-size: 15px;
    font-weight: 600;
}

.banner-button {
    background-color: black;
    color: white;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #fff;
    border-radius: 5px;
}

    .banner-button:hover, .banner-button:focus, .banner-button:active, .banner-button.active {
        color: white;
        background-color: #3b3939;
        border-color: white; /*set the color you want here*/
    }
