
html, body { height: 100%; }

*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body { background-color:#41C289; color:#fff;}

.scrollbar {
  width: 100%;
  height: 30px;
  background-color: #FaFaFa;
  border-top: 1px solid #CCC;
  position: fixed;
  bottom: 0;
  overflow: hidden;
}

.bar {
  width: 0px;
  height: 29px;
  background-color: #E74C3C;
  position: fixed;
}

#wrapper {
  width: 1024px;
  height: 100%;
  margin: 0 auto;
}
h1 { margin-top:50px; text-align:center; color:#fff;}
#block {
  width: 50%;
  margin: 0 auto;
  float: none;
  min-height: 100%;
  float: left;
  padding: 10px;
  overflow: hidden;
  background-color: #ccc;
  margin-bottom: 30px;
}
 @media all and (max-width: 1024px) {

#wrapper { width: 100%; }
}
