/* settings for tags */
html {
  position: relative;
  min-height: 100%;
}

body {
  background-color: #323f50;
  margin-bottom: 60px;
  font-family: Open Sans;
}

footer {
  position: absolute;
  bottom: 0;
  height: 60px;
  width: 100%;
  background-color: #34495e;
  border-top: 1px solid;
  border-color: #2d97de;
}

h1 {
  color: #FFFFFF;
  border-color: #2d97de;
  font-size: 4em;
  margin-bottom: 1em;
}

hr {
 margin-top: 50px;
 margin-bottom: 50px;
 border-top: 1px solid black;
}

.btn {
  background-color: #2d97de;
  color: #ffffff;
  border-color: #2d97de;
  border: 1px solid;
}
.btn:hover {
  background-color: #fba026;
  border-color: #2d97de;
  color: #2d97de;
}

.col-xs-6 {
  margin-bottom: 1em;
}

.text {
  color: #2d97de;
}
.text a {
  color: #2d97de;
  text-decoration: underline;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 15%;
  height: auto;
}

#countdown {
      font-size: 24px;
      text-align: center;
    }

// Act on clicks to a elements
$("#link1").on('click', function(e) {
    // prevent the default action, in this case the following of a link
    e.preventDefault();
    // capture the href attribute of the a element
    var url = $(this).attr('href');
    // perform a get request using ajax to the captured href value
    $.get(url, function() {
        // success
    });
});