/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: #ff1100; /*Text color*/
  font-family: courier;
  font-size: 17px;
}


.header-box {
  background-color: black;
  position: relative;
  text-align: center;
}

.header-box img {
  z-index: -1;
}

.headerBanner img{
 display: block;
 margin-left: auto;
 margin-right: auto;
 width: 100%;
 height: auto;
 padding: 10px;
}

.header-box h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  -webkit-text-stroke: 2px black;
}

 /* Add a black background color to the top navigation */
.topnav {
  background-color: #cc0000; /*nav bar color*/
  overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 30px 28px;
  text-decoration: none;
  font-size: 30px;
  display: inline-block;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #d2d2d2;
  color: black;
}

.section{
  text-align: center;
  padding: 25px;
}


.pageText{
  width: 90%;
  text-align:justify;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
}

.article{
  width: 90%;
  text-align:justify;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  white-space: pre-line;
}


.image img{
 display: block;
 margin-left: auto;
 margin-right: auto;
 width:90vw;
 height: auto;
 padding: 10px;
}


.imageCaption{
 width: 90%;
 margin-left: auto;
 margin-right: auto;
 text-align:start;
}

.leftFloat{
  position: absolute;
  left:5%;
  z-index:2;
}

.rightFloat{
  position: absolute;
  right:5%;
  z-index:3;
}


.ascii-art {
  white-space: pre;
  font-size: 20pt;
  width: 24pc;
  text-align: left;
  font-family:monospace;

}


.embedContainer{
 width: 90vw;
 height: 80vw;
 margin: auto;
 align-items: center;
}

.videoContainer{
 width: 90vw;
 height: 50.625vw;
 margin: auto;
 align-items: center;
}

.responsive-video{
  width: 100%;
  height: 100%;
  position: relative;
  border: none;
}


.active {
  color: black;
  background-color: #1fea00;
}