/*
 * Fonts
 */
 @import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Condensed');
body {
  font-family: 'Open Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
}

/*
 * Colours
 */
.bg-dgrey {
  background-color: #333 !important;
}

.c-owhite {
  color: #eee !important;
}

nav.navbar {
  background-color: #fff;
  border-bottom: 2px solid #f00;
  color: #333;
}

/*
 * Eye Candy
 */
.jumbotron {
  border-radius: 0;
}

/*
 * Example Banner Schemes
 */
 .alert {
  border-radius: 0px;
 }
.alert.widget-banner-red {
  background: #ffb4b3;
  border: 1px solid #d60400;
  color: #333;
}
.alert.widget-banner-grey {
  background: #d9d9d9;
  border: 1px solid #808080;
  color: #333;

}
.alert.widget-banner-black {
  background: #333;
  border: 1px solid #000000;
  color: #e6e6e6;
}
.alert.widget-banner-basic {
  background: #fcfcfc;
  border: 1px solid #dadad9;
  color: #333;

}