/* Define Fonts */
@font-face {
  font-family: '8bitOperatorPlus-Bold';
  src: url('8bitOperatorPlus-Bold.woff') format(woff);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: '8bitOperatorPlus-Regular';
  src: url('8bitOperatorPlus-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html {
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: block;
  min-height: 100%;
  height: 100%;
  position: relative;
}

body {
  max-width: 48em;
  margin: 0 auto;
  padding: 1em;
  font-family: '8bitOperatorPlus-Bold', '8bitOperatorPlus-Regular', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #FFFFFF;
  word-break: break-word;
}

.container {
  width: 100%;
  border-style: solid;
  border-width: 8px;
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1.5em;
  box-shadow: 0px 5px 5px #212121;
  box-sizing: border-box;
  display: block;
}

p {
  font-size: 1.4em;
  font-family: '8bitOperatorPlus-Regular';
}

li {
  font-family: '8bitOperatorPlus-Regular';
}

a, a:visited {
  color: #B3E5FC;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: #03A9F4;
}

.no-underline:hover {
  text-decoration: none;
}


h1 {
  font-size: 3em;
  font-family: '8bitOperatorPlus-Bold';
  line-height: 10px;
}

h2 {
  font-size: 2em;
  font-family: '8bitOperatorPlus-Bold';
}

li {
  font-size: 1.35em;
}

img {
  margin: 0 auto;
  width: 100%;
  height: auto;
  display: block;
}

.yellow-text {
  color: #ffff00;
}

.red-text {
  color: #D50000;
}

.caption {
  text-align: center;
  color: #BDBDBD;
}

.sources-cited li:target {
  background-color: #003cff;
  color: white;
}

.chapter-button {
  background-color: Transparent!important;
  font-family: '8bitOperatorPlus-Bold';
  text-align: center;
  font-size: 2.8em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.1em;
  padding-bottom: 0.2em;
  margin-bottom: 6px!important;
  border: 5px solid #f58230;
  color: #f58230;
}

.chapter-button:hover {
  color: #ffff00;
  border: 5px solid #ffff00;
}

footer {
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 0.5em;
}

footer p {
  line-height: 1em;
}

footer a, footer a:visited {
  color: #81D4FA;
}

footer a:active {
  color: #039BE5;
}

.title {
  text-align: center;
  color: #f9ff10;
  margin-bottom: 1em;
}

.text-center {
  text-align: center;
  margin: 0 auto;
}

.logo {
  width: 90%!important;
  margin-bottom: 1em;
}

audio {
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* Responsive YouTube Embed (From https://github.com/jeffehobbs/embedresponsively) */

.embed-container { 
  position: relative; 
  padding-bottom: 56.25%; 
  height: 0; 
  overflow: hidden; 
  max-width: 100%; 
  border-radius: 2em;
  overflow: hidden;
  z-index: 1;
} 
.embed-container iframe, .embed-container object, .embed-container embed { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%;
  border-radius: 2em;
  overflow: hidden;
  z-index: 1;
}

/* 
Responsive Cols and Rows from ElementCSS by Neocities (https://github.com/neocities/element)
Provided under MIT License
*/
g-row {
  display: block
}
g-col {
  display: inline
}

@media (min-width: 50em) {
  g-row {
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  g-col {
    display: table-cell;
    padding-right: 2%;
  }
  g-col:last-child {
    padding-left: 2%;
    padding-right: 0;
  }
}