/*bootstrap breakpoints

// Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... } sm

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { ... } md

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { ... } lg

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... } xl

*/

body {
    font-family: 'Hemi Head', sans-serif;
}
.navBkgd {
    background-image: url("../images/navBarBkgd.jpg");
    background-repeat: repeat;
    background-position: center;
}
.mHead {
    background-color: #000000;
}
.hColumnBkgnd {
    background-image: url("../images/headImage.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.bBanner {
    background-color: #000000;
}
.stBkgnd {
    background-color: rgb(229, 152, 10);
}
.spColor {
    color: #ff6700;
}

/*links*/
a.bb:link {
    text-decoration: none;
    color: #ff6700;
}
a.bb:visited {
    text-decoration: none;
    color: #ff6700;
}
a.bb:hover {
    text-decoration: none;
    color: #ffffff;
}

