body {
  background: #ECEFF1;
  color: rgba(0, 0, 0, 0.87);
  font-family: Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
  color: #ffa100;
}

#message {
  background: white;
  max-width: 420px;
  margin: 10px auto 10px;
  padding: 10px 10px;
  border-radius: 4px;
}

#message p {
  line-height: 140%;
  margin: 10px 0 10px;
  font-size: 14px;
}

#message a {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
  padding: 2px;
  border-radius: 4px;
}

#message,
#message a {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.header-centered {
  text-align: center;
}

.img-anim-link {
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-property: all;
}
.img-anim-link:hover {
  transform: translateY(-4px);
  transition-duration: 0.4s;
  transition-timing-function: ease-in-out;
  transition-property: all;
  box-shadow: 0px 8px 16px rgba(38,50,56,0.32);
}
.img-badge {
  width: auto;
  height: 40px;
  max-width: 100%;
}
.footer {
  background-color: #f5f5f5;
}

.site-default ::selection{
  background-color: #ffa100;
  color: #fff;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  z-index: 999999;
}

.load-circle:after,
.load-circle:before{
  content: '';
  background: #fff;
  height: 50%;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 1s;
}

.load-circle:after{
  top: 0;
}

.load-circle:before{
  bottom: 0;
}

.load-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 10px solid #e8e8e8;
  border-top: 10px solid #000;
  -webkit-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 600px) {
  body, #message { margin-top: 0; }
}
