 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #000;
     font-family: 'Roboto', sans-serif;
     font-size: 16px;
     line-height: 21px;
 }

 #wrapper {
     max-width: 500px;
     margin: 16px auto;
     border: 1px solid #39b54a;
     background-color: #fff;
     padding: 15px 25px;
 }

 article {
     padding: 10px 0 0;
 }

 article section {
     background: #39b54a;
     margin-left: -25px;
     padding: 18px 25px;
     margin-bottom: 10px;
 }

 footer {
     padding: 10px 10px 0;
     border-top: 2px solid #39b54a;
     margin: 13px -10px 0;
 }

 footer p {
     font-size: 14px;
     line-height: 1.1;
     font-family: 'PT Sans', sans-serif;
 }

 footer p:first-of-type {
     margin-top: -20px !important;
 }

 footer p small {
     display: block;
     font-weight: 300;
     font-size: 87%;
 }

 p {
     margin-top: 10px;
     text-align: justify;
 }

 p:first-of-type {
     margin-top: 0px;
 }

 p span {
     white-space: nowrap;
 }

 h1 {
     font-size: 38px;
     line-height: 1.1;
     margin-top: 12px;
     color: #fff;
 }

 h1 small {
     font-size: 19px;
 }

 h1 span {
     display: inline-block;
     border-top: 1px solid #fff;
     padding-top: 10px;
 }

 h1:first-of-type {
     margin-top: 0;
 }

 h2 {
     font-size: 16px;
     line-height: 24px;
     padding-top: 20px;
 }

 ul {
     list-style: none;
 }

 ul li {
     background: url(icon.jpg) 0 7px no-repeat;
     padding-left: 19px;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: #000;
     text-decoration: none;
 }

 .cen {
     text-align: center
 }

 @media only screen and (max-width:500px) {
     #wrapper {
         border: none;
         margin: 0;
         padding: 16px;
     }

     p {
         text-align: left;
     }
 }