/* 2020MAR24 */
/* 'css3prefix mixin' @see https://github.com/matthieua/sass-css3-mixins/blob/master/css3-mixins.scss */
/* 'keyframes' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/*/
/* 'animation' mixin from https://developer.mozilla.org/en-US/docs/Web/CSS/animation */
/* legacy-direction function @see http://www.sitepoint.com/building-linear-gradient-mixin-sass/ */
/* 'transition' mixin @see http://codepen.io/sawmac/pen/cayhK */
/* 'gradientanimation' mixin @see https://medium.com/@dave_lunny/animating-css-gradients-using-only-css-d2fd7671e759#.jlbdgs4jl */
/* 'animation' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/ */
/* line 4, ./blurb.scss */
.blurb {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  background-color: gray;
  color: white;
  margin: 0.5em;
  border: 0.125em solid black;
  overflow: hidden;
  opacity: 0.90;
  flex: 0;
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.5);
}
/* line 24, ./blurb.scss */
.blurb .header {
  flex: 0 1 auto;
  border: 0;
  border-bottom: 0.125em solid black;
}
/* line 26, ./blurb.scss */
.blurb .header h1 {
  margin: 0px;
  padding: 10px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(to left top, #006633, #005c2e);
  color: white;
  background-color: #006633;
}
/* line 33, ./blurb.scss */
.blurb .header h1 a:hover {
  color: white;
  background-color: gray;
}
/* line 38, ./blurb.scss */
.blurb .header h2 {
  margin: 0;
  padding: 0.500em;
}
/* line 42, ./blurb.scss */
.blurb .header h3 {
  margin: 0;
  padding: 0.250em;
}
/* line 46, ./blurb.scss */
.blurb .header.warning h1 {
  color: orange;
}
/* line 53, ./blurb.scss */
.blurb a {
  color: white;
  text-decoration-color: yellowgreen;
  text-decoration: underline;
  transition: all 0.25s;
}
/* line 59, ./blurb.scss */
.blurb a:hover {
  color: white;
}
/* line 76, ./blurb.scss */
.blurb .body {
  color: white;
  background-color: gray;
  border: 0;
  margin: 0;
  padding: 0.5em;
}
/* line 88, ./blurb.scss */
.blurb .body p {
  font-family: sans-serif;
  padding: 0.125em;
  margin: 0.125em;
}
/* line 93, ./blurb.scss */
.blurb .body a:hover {
  background-color: gray;
  color: white;
}
/* line 100, ./blurb.scss */
.blurb .metadata {
  flex: 0;
  font-size: 0.75em;
  padding: 0.250em;
  color: white;
  background-color: gray;
  border: 0;
  border-bottom: 0.125em solid black;
}
/* line 111, ./blurb.scss */
.blurb .footer {
  flex: 0 0 auto;
  color: white;
  margin: 0;
  padding: 0.50em;
  font-size: 0.75em;
  background-color: gray;
  border: 0;
  border-top: 0.125em solid black;
}

/* line 126, ./blurb.scss */
.vstretch {
  flex: 1 0 auto;
}

/* line 130, ./blurb.scss */
.novstretch {
  flex: 0 0 auto;
}
