
html, body {
  clear: both;
  margin: 0;
  background: url(../images/night_highway.jpg) no-repeat center center;
  background-size: cover;
}

#jumbotron {
    height: 600px;
}

h1 
{
    text-align: center;
    text-transform: uppercase;
    font-family: Roboto;
    font-weight: bold !important;
    margin-bottom: 0.6em;
    margin-top: 0;
}

h3
{
  text-decoration: underline;
}

p
{
  font-size: .8em !important;
}

#StartApp {
  text-align: center;
  color: black;
  cursor: pointer;
  font-family: Roboto;
  font-size: 1.5em;
  text-decoration: none;
  display: block;
  padding-top: 5px;
  padding-bottom: 15px;
  -webkit-animation: blinking 2000ms infinite;
  -moz-animation: blinking 2000ms infinite;
  -o-animation: blinking 2000ms infinite;
  animation: blinking 2000ms infinite;
  text-transform: uppercase;
}

@-webkit-keyframes blinking {
  0% { opacity: 1;}
  50% { opacity: 0;}
  100% { opacity: 1;}
}

@-moz-keyframes blinking {
  0% { opacity: 1;}
  50% { opacity: 0;}
  100% { opacity: 1;}
}

@-o-keyframes blinking {
  0% { opacity: 1;}
  50% { opacity: 0;}
  100% { opacity: 1;}
}

@keyframes blinking {
  0% { opacity: 1;}
  50% { opacity: 0;}
  100% { opacity: 1;}
}

.container
{
  background-color: rgba(256,256,256,0.9) !important;
  font-size: 1.5em !important;
  margin-top: 7px;
}