

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: black;
  color: #f1f1f1;
}


/* default button look */
a.pagelink {
  background-color: #901919;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
}

a.pagelink:hover, a.pagelink:active {
  background-color: #b80f0f;
}

a.extlink {
  background-color: #196a90;
  color: white;
  font-size: small;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  width: 100px;
  border-radius: 6px;
}

a.extlink:hover, a.extlink:active {
  background-color: #2085b4;
}


/* parent div */
.FullHeight {
  max-width: 1000px; 
  margin: 0 auto;
}

/* front page banner div */
.MainBanner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* image for the front page banner */
.MainBanner img {
  vertical-align: middle;
  background: rgb(0, 0, 0); /* Fallback color */
  background: linear-gradient(rgba(0,0,0,1), rgb(0,0,0,0.8), rgba(0,0,0,0.2), rgba(0, 0, 0, 0));
  border: 3px solid black;
  border-radius: 10px;
}

/* overlay text for front page banner */
.MainBanner .content {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0); /* Fallback color */
  background: linear-gradient(rgba(0,0,0,0), rgb(0,0,0,0.2), rgba(0,0,0,0.8), rgba(0, 0, 0, 1));
  width: 100%;
  padding: 2px;
}

/* sub page banner div */
.SubBanner {
  position: relative;
  max-width: 1000px;
  text-align: center;
  color: white;
  margin: 0 auto;
}

/* overlay text for front page banner */
.SubBanner .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Top left text */
.BackButton {
  position: absolute;
  bottom: 8px;
  left: 4px;
}

/* define look of the button */
.BackButton a {
  background-color: #901919;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 6px;
}

.BackButton a:hover, a:active {
  background-color: #b80f0f;
}

/* Create two columns/boxes that floats next to each other */
.leftcol {
  float: left;
  width: 80%;
  height: 100%;
  background: #444;
  padding: 15px;
  border: 4px solid black;
  border-radius: 10px;
}

.rightcol {
  float: right;
  width: 20%;
  height: 100%;
  background-color: #444;
  padding: 15px;
  border: 4px solid black;
  border-radius: 10px;
}

/* Clear floats after the columns */
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Create a single full width column */
.SingleCol {
  width: 100%;
  height: 100%;
  background-color: #444;
  padding: 20px;
  border: 4px solid black;
  border-radius: 10px;
}

/* Responsive layout - makes the two columns/boxes stack on top of each other instead of next to each other, on small screens */
@media (max-width: 750px) {
  .leftcol, .rightcol {
    width: 100%;
    height: auto;
  }
}

code {
    font-size:125%;
    font-weight:bold;
}
