html { 
  background: url(background.png) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: white;

  min-width: 320px;
}
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  position: relative;
  padding-bottom: 34px;
  min-height: 97%;
}
/*END General styles*/


/*Container styles*/
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container:after,
.container:before {
  display: table;
  content: " ";
}

@media (min-width: 768px) {
  .container {
      width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/*END Container styles*/


/*Header styles*/
.logo {
  height: 70px;
  margin: 140px 0 35px 0;
  display: inline-block;
}
h1 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
 font-size: 42px;
  font-weight: 300;
  line-height: 1.1;
  text-align: left;
  margin: 0 0 39px 0;
}
h1 span {
  display: block;
}
h1 small {
  font-size: 26px;
}
/*END Header styles*/
/*Main content styles */
ul {
  margin: 0 0 33px 0;
  list-style: none;
}
ul li {
  font-size: 20px;
  font-weight: 300;
  text-align: left;
}

.loading {
  cursor: progress;
}
.note {
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  margin: 0;
}
footer {
  height: 37px;
  margin-top: 50px;
}
footer p {
  font-size: 12px;
  text-align: left;
  color: #FFFFFF;
  margin: 0;
}

/*END Main content styles*/

@media (max-width: 767px) and (min-width: 481px) {
  h1 {
    font-size: 34px;
  }
  .logo {
    margin: 51px 0 37px 0;
  }
  article img {
    width: 100%;
    max-width: 510px;
  }
}
@media (max-width: 480px) {
  .mobile-hidden {
    display: none;
  }
  html { 
    background: #009966; 
  }
  header {    
    text-align: center;
    margin-bottom: 31px;
  }
  h1 {
   font-family: "Open Sans", Helvetica, Arial, sans-serif;
   font-size: 34px;
    line-height: 1.06;
    text-align: center;
  }


 h1 span {
    text-align: center;
    display: block;
   /* font-size: 16px;*/
    line-height: 1.04;
    margin-bottom: 14px;
  }
  
h1 small {
  font-size: 22px;
}  .logo {
    margin: 40px 0 28px 0;
  }
  ul {
    padding-left: 20px;
    margin-bottom: 52px;
  }
  ul li {
    font-size: 17px;
    font-weight: 300;
    text-align: left;
    color: #ffffff;
  }
  .button {
    width: 100%;
  }
  .note {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #ffffff;
  }
}

div#update_gcng {
  display: inline-block;
 	vertical-align:middle;
	border-radius: 100%;
  border-top: 4px solid #ffffff;
  border-left: 4px solid #009363;
  border-bottom: 4px solid #009363;
  border-right: 4px solid #ffffff;
  width: 25px;
  height: 25px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }

}