body {
  visibility: hidden;
  margin: 0;
  padding: 0;
  background-color: #000;
}

* {
  max-width: 100%;
}

p {
  max-width: 500px !important;
  font-family: "Red Hat Mono", monospace;
  font-weight: 400;
  font-style: normal;
  line-height: 140%;
  font-size: 11pt;
}

h2 {
  color: #00FF00;
}

::-moz-selection { color: #000;  background: #FFF; }
::selection      { color: #000;  background: #FFF; }

#ascii {
  font-size: 5pt;
  font-family: Monospace;
  white-space: pre;
  color: #FFF;
  line-height: 140%;
  margin: 20px 0 20px 0;
}

#workAscii {
  font-size: 12pt;
  font-family: Monospace;
  white-space: pre;
  color: #FFF;
  line-height: 100%;
}

.nowrap {
  white-space: nowrap;
}

.blueHeader {
  background-color: #00aaaa;
  padding: 20px 4px 20px 10px;
  margin-bottom: 40px;
  color: #000;
}

.blackH1 {
  color: #000;
}

.greenText {
  color: #00ff00;
  margin: 0;
  padding: 0;
}

.redText {
  background-color: #b21818;
  color: #FFF;
  margin: 0;
  padding: 0;
  border-right: 10px solid #FFF;
  text-transform: uppercase;
}

.centeredLabel {
  text-align: center;
}

.clientName {
  background-color: #1e347b;
  color: #FFF;
  margin-bottom: 6px;
}

pre {
  font-size: 16px;
  padding: 10px;
}

footer {
  background-color: #00FF00;
  padding-top: 20px;
  color: #000;
  margin-top: 40px;
}

/* GIFs */

#spinningKitty {
  position: fixed;
  right: 0;
  margin-right: 100px;
  bottom:0;
  z-index: 2;
}

#spinningThing {
  position: fixed;
  top: 50%;
  margin-top: -24px;
  right: 0;
  z-index: 2;
}

/* CSS MEDIA QUERIES */
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
  
  #ascii {
    font-size: 4pt;
    margin: 20px 0 20px 0;
  }

  #workAscii {
/*    font-size: 4.5pt;*/
    line-height: 95%;
  }

}

/* Landscape phones */
@media (max-width: 600px) { 
  
  #ascii {
    font-size: 3pt;
    margin: 20px 0 20px 0;
  }

  #workAscii {
    font-size: 8pt;
    font-family: Monospace;
    white-space: pre;
    color: #FFF;
    line-height: 90%;
  }

  body {
    padding: 0 6px 0 0px;
    margin-left: 4px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
  }

}

/* portrait phones */
@media (max-width: 420px) { 
  
  #ascii {
    font-size: 2.3pt;
    margin: 0px 0 20px 0;
  }

  #workAscii {
    font-size: 6pt;
  }

  body {
    padding: 0 6px 0 0px;
    margin-left: 4px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
  }

}

/* a lot of CSS for a walking, spinning thing */
@-webkit-keyframes blink {
  0% {
      margin-top:-160px;
  }
  50% {
      margin-top:160px;
  }
  100% {
      margin-top:-160px;
  }
}
@-moz-keyframes blink {
  0% {
      margin-top:-160px;
  }
  50% {
      margin-top:160px;
  }
  100% {
      margin-top:160px;
  }
}
.objWalk {
  -webkit-transition: all 5s ease-in-out;
  -moz-transition: all 5s ease-in-out;
  -o-transition: all 5s ease-in-out;
  -ms-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;

  -webkit-animation-direction: normal;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: blink;
  -webkit-animation-timing-function: ease-in-out;
  
  -moz-animation-direction: normal;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-name: blink;
  -moz-animation-timing-function: ease-in-out;    
}