/*
 * Globals
 */
/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-default {
  color: #fff;
  text-shadow: none;
  /* Prevent inheritence from `body` */
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 0.5rem 2rem;
}

.btn-default:hover,
.btn-default:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

/*
 * Base structure
 */
html,
body {
  height: 100%;
}

body {
  background: url(../img/cover.jpg) no-repeat center center fixed;
  color: #fff;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%;
  /* For at least Firefox */
  min-height: 100%;
  background: rgba(48, 53, 70, 0.5);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}

.site-wrapper-inner {
  display: table-cell;
  vertical-align: top;
}

.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
  padding: 30px;
}

/*
 * Header
 */
.masthead-brand {
  margin-top: 10px;
  margin-bottom: 10px;
}

.nav-masthead {
  text-align: center;
  display: block;
}

.nav-masthead .nav-link {
  display: inline-block;
}

@media (min-width: 768px) {
  .masthead-brand {
    float: left;
  }

  .nav-masthead {
    float: right;
  }
}

.cover {
  padding: 0 20px;
}

.cover-heading {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 4rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .cover-heading {
    font-size: 3.4rem;
    letter-spacing: 15px;
  }
}

.cover-copy {
  max-width: 500px;
  margin: 0 auto 4rem;
  font-size: 2rem;
}

.cover-copy-status {
  max-width: 500px;
  margin: 0 auto 4rem;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 2rem;
}

.status_container{
  display: flex;
  justify-content: center;
  padding: 5%;
  width: 100%;
}

.status{
  padding: 2%;
}

.status_text{
  padding: 2%;
}

.blink {
  animation: blinker 1s linear infinite;
  height: 50px;
  width: 50px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.green {
  background-color: #2bff00;
  box-shadow: 0 0 8px #78D965, inset 0 0 8px #78D965;
}

.red {
  background-color: #ff0019;
  box-shadow: 0 0 8px #C42C3B, inset 0 0 8px #C42C3B;
}

.orange {
  background-color: #ffa600;
  box-shadow: 0 0 8px #b97d0c, inset 0 0 8px #b97d0c;
}

.mastfoot {
  color: #999;
  color: rgba(255, 255, 255, 0.5);
   position: absolute;
    bottom: 0;
    width: 100%;
    height: 5.5rem;            /* Footer height */
}

@media {
  .masthead {
    position: fixed;
    top: 0;
  }

  .mastfoot {
    position: fixed;
    bottom: 0;
  }

  .site-wrapper-inner {
    vertical-align: middle;
  }

  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%;
  }
}

/* @media (min-width: 992px) {
  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%;
  }
} */