/*Color palette: 
Blue - #45B3FC
Dark blue - #235B84
Gray - #7B7E7A
Dark purple - #26172B
Red - #DA4743
White
Black
*/

::selection {
  background-color: #45B3FC;
  color: #FFF;
}

::-moz-selection {
  background-color: #45B3FC;
  color: #FFF;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  max-width: 320px;
  padding-top: 15px;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #000;
  background-image: url("../images/pw_maze_black.png");
  color: #fff;
}

h1 {
  font-size: 1.424em;
  line-height: 2.804em;
  height: 2.804em;
  font-family: "Oxygen", sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  text-transform: uppercase;
  background-color: #000;
}

.fa-circle-o-notch {
    margin-top: 30px;
    text-align: center;
    display: block;
    font-size: 2.804em;
    color: #45B3FC;
}

h2 {
  font-family: "Oxygen", sans-serif;
  font-size: 1em;
}

p {
  font-size: 0.889em;
}

.media {
  margin-top: 0;
  padding: 15px;
  position: relative;
}

.media:first-of-type {
  border-top: #45B3FC 5px solid;
}

.media:nth-of-type(even) {
  background-color: #000;
}

.media:nth-of-type(odd) {
  background-color: #26172B;
}

.media-left img {
  width: 3.7em;
  border-radius: 100%;
}

.media-body p {
  color: #45B3FC;
  text-align: left;
  margin-bottom: 0;
}

.media-body i {
  font-size: 0.702em;
}

.media-heading {
  margin-top: 7px;
}

.media-body div:nth-of-type(1) {
  padding-right: 0;
  padding-left: 0;
}

.media-body div:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 0;
}

.media-body div:nth-of-type(2) p {
  text-align: right;
}

.media-body .online:after {
  content: "Online";
}

.media-body .offline {
  color: #DA4743;
}

.media-body .offline:after {
  content: "Offline";
}

.media-body .closed {
  color: #7B7E7A;
}

.media-body .closed:after {
  content: "Closed"
}

a {
  border-bottom: 1px dotted #fff;
  color: white;
}

a:visited,
a:hover,
a:active {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s ease all;
}

footer {
  font-size: 0.889em;
  bottom: 0;
  left: 50%;
  text-align: center;
  margin-top: 15px;
}