#wrapper{
    max-width:1000px;
    margin:0 auto;
}
.logo{
    display:block;
     max-width:1000px;
    margin:0 auto;
}
.logo img{
    border-radius: 10px;
}
body{
    font-family: Verdana,Geneva,sans-serif;
    color: #424652;
    padding: 20px;
    line-height: 1.4;
    font-size: 14px;
    margin: 0;
}
a{
    color: #424652;
    transition: color 0.3s ease;
}
a:hover{
    color: #000;
}
h1{
    font-size:1.4rem;
}
h2{
    font-size:1.1rem;
}
ul{
    padding-left: 20px;
    list-style: square;
   
}
ul li:first-child{
     border-top:1px solid #ccc;
    padding-top: 10px;
}
ul li{
    padding-bottom:10px;
    border-bottom:1px solid #ccc;
    margin-top: 10px;
}
@media only screen and (max-width: 900px){
    #wrapper{
       padding: 10px 30px 30px;
    }
    body{
        padding:0px;
    }
    .logo{
        overflow:hidden;
    }
    .logo img{
        border-radius: 0px;
        width:900px!important;
    }
}
@media only screen and (max-width: 600px){
    #wrapper{
       padding: 0 20px 20px;
    }
    .logo img{
        border-radius: 0px;
        width:700px!important;
    }
    h1{
        font-size:1.2rem;
    }
    h2{
        font-size:1.0rem;
    }
}