body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #122;
    

  }
  div.maindiv {
    height: 100%;
    width: 100%;
    text-align: center;
    color: deepskyblue;
    font-size: x-large;
  }
  img.mainimg {
    margin-top: 10%;
    margin-bottom: 10%;
    margin-left: auto;
    margin-right: auto;
    height: 80%;
    width: auto;
  }
  div.content {
    margin-top: 50px;
    color: #EEE;
    font-size: large;
    text-align: left;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  div.contentbox {
    margin-top: 20px;
    color: #EEE;
    font-size: large;
    text-align: left;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-color: deepskyblue;
    border-width: 2px;
    border-radius: 20px;
    padding: 20px;
    background-color: #222A;
  }
  hr {
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: white;
    border-width: 1px 0 0 0;
    border-radius: 20px;
    margin-top: 50px;
  }
  hr:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: white;
    border-width: 0 0 1px 0;
    border-radius: 20px;
  }
  h1, h2, h3, h4, h5, h6 {
    color: deepskyblue;
  }

  table {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border-collapse: collapse;
    color: #EEE;
  }
  td {
    width: 49.9%;
    border: none;
  }
  a {
    color: deepskyblue;
    cursor: pointer;
    font-size: large;
    font-weight: bold;
  }
  a:hover {
    color: white;
  }
  a:visited {
    color: deepskyblue;
  }


  .butt {
    background-color: deepskyblue;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: larger;
    margin-bottom: 10px;
    transition-duration: 0.4s;
    text-align: center;
    width: 100%;
  }
  .butt:hover {
    background-color: white;
    color: deepskyblue;
  }

  .backbutton {
    display: block;
    position: fixed;
    top: 15%;
    left: 2%;
    width: 7%;
    min-width: 100px;
    max-width: 300px;
  }

  .hidden {
    display: none;
  }
  .spoiler {
  cursor: pointer;
	color: rgb(255, 115, 0);
  }
  .spoilerContent {
    color: rgb(255, 166, 0);
  }
  .spoiler span {
    display: none;
  }
  .spoiler.revealed span {
    display: inline;
  }