* { 
    padding: 0; 
    margin: 0;
    box-sizing: border-box; 
}

body {
 font-family: Arial, Helvetica, sans-serif;
 font-size: 13px;
}
#wrapper { 
 margin: 0 auto;
 width: 100%;
}
#header {
 width: 100%;
 color: #333;
 padding: 10px;
 border: 1px solid #ccc;
 height: 100px;
 margin: 10px 0px 5px 0px;
 background-color:#F3F2ED;
 text-align: center;
 text-decoration: none;
}
#header h1 {
    color: #333;
}
#content { 
 width: 100%;
 color: #333;
 border: 1px solid #ccc;
 background:#CCC8B3;
 margin: 0px 0px 5px 0px;
 padding: 10px;
 height: 350px;
}
#content #button {
    display: inline-block;
    width: 150px;
    height: 50px;
    background-image: url(img/button.png); 
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    text-decoration: none;
    

}
#content #button h1 {
    font-size: 15pt;
    margin: 0;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    
    
}
#footer { 
 color: #333;
 width: 100%;
 border: 1px solid #ccc;
 background-color: #F3F2ED;
 margin: 0px 0px 10px 0px;
 padding: 10px;
}