.jumbotron {
  margin-top: 30px;
}

.gaugeHeading {
  text-align: center;
  font-weight: 200;
}

.btn {
  font-size: 40px;
  height: 40%;
}

.gaugeGroup {
  padding-bottom: 30px;
}

h1 {
  font-size: 75px;
}

h2 {
  font-size: 55px;
}

h2.denied {
  font-size: 55px;
  font-weight: normal;
}

.denied {
  width: 100%;
  height: 100%;
}

.gauge {
  text-align: center;
  font-weight: 200;
}

.message {
  text-align: center;
}

.center {
    float:none;
    margin-left: auto;
    margin-right: auto;
}

.centerForce {
    float:none;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pulse {
  margin:100px;
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cca92c;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
