* {
    margin: 0;
    padding: 0;
    font-family: Courier, "Courier New", "Open Sans", sans-serif;
}
body {
    width: 100vw;
    height: 100vh;
    background: #fff;
}

a {
    letter-spacing: 2px;
    text-decoration: none;
    color: #000;
    border: 3px solid;
    padding: 12px 20px;
    background: lightgray;
    display: table;
    margin: 20px auto;
    -moz-box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    -webkit-box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
}
a:active {
    -moz-box-shadow: 0px 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}
#central {
    margin: calc(50vh - 25px) auto;
    display: table;
}
#loading {
    display: none;
    border: 4px solid grey;
    border-radius: 8px;
    padding: 40px;
}
#loading p {
    margin-bottom: 30px;
    text-align: center;
}
.loading-gif {
  height:50px;
  width:50px;
  background:url('https://sierrafire.cr.usgs.gov/images/loading.gif') no-repeat;
}

#loading-container {
	width: 500px;
	padding: 3px;
    background: #000;
}

.loading-bar {
	height: 20px;
	display: block;
    background: linear-gradient(#34a22c, #08793e);
    -webkit-box-shadow: 0 0 10px #34a22c;
    -moz-box-shadow: 0 0 10px #34a22c;
    box-shadow: 0 0 10px #34a22c;
    animation: loading 8s ease-in-out;
}

@-webkit-keyframes loading {
    0% { width: 0 }
    100% { width: 100% }
}
@-moz-keyframes loading {
    0% { width: 0 }
    100% { width: 100% }
}
@-o-keyframes loading {
    0% { width: 0 }
    100% { width: 100% }
}
@keyframes loading {
    0% { width: 0 }
    100% { width: 100% }
}
#message {
    background: #34a22c;
    border: 4px solid #08793e;
    padding: 40px;
    margin: calc(50vh - 160px) auto;
    text-align: center;
    display: none;
}
#message h1 {
    margin-bottom: 15px;
}
#message a {
    padding: 12px 14px;
    text-transform: uppercase;
    border: 1px solid grey;
    border-radius: 3px;
    margin-top: 30px;
}
@media screen and (max-width: 600px) {
    #message {
        padding: 10px;
    }
    #loading-container {
	width: 100%;
}
}