body{
    font:1.5/1.5 serif,Helvetica;
    margin:0;
    padding:0;
    background-color:#f2bc94;
    color:#30110d;
}

.container{
    width:80%;
    margin:auto;
    overflow: hidden;
}

ul{
    padding: 0;
    margin: 0;
}

.button_1{
    height: 38px;
    background: #f2bc94;
    border: 0;
    padding-left: 20px;
    padding-right: 20px;
    color: #722620;
}

.button_1:active{
    background: #722620;
    color: #f2bc94;
    cursor: pointer;
}

.dark{
    background-color: #30110d;
    color: aliceblue;
    padding: 15px;
    text-align: center;
}

header{
    background:#30110d;
    color:aliceblue;
    padding-top:30px;
    min-height:70px;
    border-bottom: #722620 3px solid;
}

header h1{
    text-transform:uppercase;
}
header a{
    color: aliceblue;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
}

header li{
    float: left;
    display: inline;
    padding:0 20px 0 20px;
}

header #branding{
    float: left;
}

header #branding h1{
    margin: 0;
}

header nav{
    float: right;
    margin-top: 10px;
}

header .highlight, header .current a{
    color: #f2bc94;
    font-weight: bold;
}

header a:hover{
    color: #f2bc94;
    font-weight: bold;
}

#showcase{
    min-height: 400px;
    background: url('../img/web_dev.jpg') no-repeat top center/cover;
    color: #fff;
    text-align: center;
}

#showcase h1{
    margin-top: 100px;
    font-size: 55px;
    text-shadow: 2px 2px #30110d;
    margin-bottom: 10px;
}

#showcase p{
    font-size: 20px;
    margin: 20px 0;
    text-shadow: 1px 1px #30110d;
}

#newsletter{
    background-color:#30110d;
    color:aliceblue;
    padding: 15px;   
}

#newsletter h1{
    float: left;
}

#newsletter form{
    float: right;
    margin-top: 15px;
}

#newsletter input[type="email"]{
    padding: 4px;
    height: 25px;
    width: 250px;
}

#boxes{
    margin-top: 20px;
}

#boxes .box{
    float:left;
    text-align: center;
    width: 30%;
    padding:10px;
}

#boxes .box img{
    width: 90px;
    height: 90px;
    border-radius: 25%;
}

#main-col{
    float: left;
    width: 70%;
    padding: 40px;
    box-sizing: border-box;
}

#sidebar{
    float: right;
    width: 30%;
    margin-top: 50px;
    margin-bottom: 50px;
    padding-left: 40px;
    box-sizing: border-box;
    font-size: 17px;
}

#sidebar li{
    list-style: none;
    padding: 10px 0;
    border-bottom: 1px #ccc dotted;
}

#sidebar .quote input, #sidebar .quote textarea{
    width: 90%;
    padding: 5px;
}

#main-col h1{
    font-size: 30px;
}

#main-col p{
    font-size:20px;
}

#services li{
    list-style: none;
    padding: 20px;
    border:#30110d 1px solid;
    margin-bottom:5px ;
    background-color: antiquewhite;
    font-size: 25px;
}

#main-footer{
    background-color:#30110d;
    color:aliceblue;
    text-align: center;
    padding: 2px 0;
}

@media(max-width: 768px){
    header #branding, header nav, header nav li, #newsletter h1, #newsletter form, #boxes .box, #main-col, #sidebar{
        float: none;
        text-align: center;
        width: 100%;
    }
    header{
        padding-bottom: 20px;
    }
    #showcase h1{
        margin-top: 40px;
    }
    #newsletter button, .quote button{
        display: block;
        width: 100%;
    }
    #newsletter form input[type="email"], .quote input, .quote textarea{
        width:100%;
        margin-bottom:5px;
    }
}