/*-----THIS HTML PAGE IS MADE BY #SAMx. skype: live:serato.mta----*/
/*-----PLEASE APPRECIATE THE AUTHORS WORK AND DO NOT REMOVE ANY CREDITS.*/
@import url(http://fonts.googleapis.com/css?family=Raleway);

body {
  background-color: #006287;
}

.container {
  margin: auto;
  width: 400px;
  border-radius: 20px;
}

.bar {
  margin: 0;
  width: 100%;
  background-color: white;
  height: 40px;
  border-radius: 20px;
  -webkit-animation: loadUp 2s infinite alternate;
  animation: loadUp 2s infinite alternate;
}

h1 {
  text-align: center;
  font-family: Raleway, Helvetica;
  font-weight: 100;
  font-size: 3em;
  color: #FFF;
}

@-webkit-keyframes loadUp {
  0% {
    width: 0px;
  }
  
  25% {
    width: 25%;
  }
  
  50% {
    width: 50%;
  }
  
  100% {
    width: 100%;
  }
}

@keyframes loadUp {
  0% {
    width: 0px;
  }
  
  25% {
    width: 25%;
  }
  
  50% {
    width: 50%;
  }
  
  100% {
    width: 100%;
  }
