html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

body {
  background: #222;
  color: #ffffff;
  font-family: "DejaVu Sans", Futura, Calibri, Sans;
}

#centered {
  width: 100%;
  max-width: 900px;
  min-width: 260px;
  margin: 0 auto 3em auto;
  padding-bottom: 1em;
  padding-top: 1em;
}

.title {
  font-size: 2em;
  margin-bottom: 0.65em;
  text-align: center;
  text-transform: uppercase;
  font-weight: lighter;
}

@keyframes line {
  from {
    width: 0%;
  }

  to {
    width: 84%;
  };
}

hr {
  animation-name: line;
  animation-duration: 2s;
}

hr {
  background-color: #ffffff;
  width: 84%;
  left: 8%;
  right: 8%;
  border: 0px;
  height: 3px;
}

.spacer {
  width: 100%;
  height: 7.5vh;
}

.content {
  margin-left: 1em;
  margin-right: 1em;
  padding-top: 5%;
  padding-bottom: 3%;
  font-size: 1em;
  text-align: justify;
  line-height: 1.4em;
}

.button {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  cursor: pointer;
  display: block;
  width: 100%;
  margin-bottom: .7rem;
}

.button:hover, .button:focus, .msgbox:hover {
  color: #222;
  background: #ffffff;
}

.msgbox {
  width: calc(100% - 4px);
  text-align: center;
  border: 2px solid #ffffff;
  padding: 15px 0;
  margin-bottom: .7rem;
  margin-top: .7em;
  font-size: 1rem;
  transition: all 0.5s ease;
}

.rateimg {
  display: inline-block;
  transition: opacity 0.5s ease;
  vertical-align: middle;
  cursor: pointer;
}

@media all and (max-width: 600px) {
  .rateimg {
    width: 100%;
    display: block;
  }
}

@media all and (min-width: 601px) {
  .rateimg {
    width: 50%;
    display: inline-block;
  }
}

.loader {
  height: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}
.loader:before{
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #222222;
  animation: loading 2s linear infinite;
}

@keyframes loading {
  from {left: -200px; width: 30%;}
  50% {width: 30%;}
  70% {width: 70%;}
  80% { left: 50%;}
  95% {left: 120%;}
  to {left: 100%;}
}

a {
  text-decoration: none;
  position: relative;
  color: #ffffff;
  font-weight: lighter;
}

a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
