body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    /* OR use 
    font: 15px/1.5 Arial, helvetica, sans-serif ;
    */
    padding: 0;
    margin: 0;
    background-color: lightgray;
}

/* For class, use . to access. For id, use #    */
/* Globals */

.container{
    width:80%;      /* since responsive, use % not px (pixels) */
    margin: auto;
    overflow: hidden;
}

.button1{
    height: 40px;
    background-color: orangered;
    color: white;
    border: none;
    padding-left: 20px;
    padding-right: 20px;
}

.dark{
    padding: 20px;
    background: #35424a;
    color: whitesmoke;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

ul{
    padding: 0;     /* remove bullets */
    margin: 0;
}

header{
    background-color: #35424a;
    color: white;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: orangered 3px solid ;
}

header a{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

header li{
    float: left;
    display: inline;
    padding: 0 20px 0 20px;    /* TOP RIGHT BOTTOM LEFT */
}

header #branding{
    float: left;
}

header #branding h1{
    margin: 0;
}

header nav{
    float: right;
    margin-top: 15px;
}

header .highlight, header .current a{
    color: orangered;
    font-weight: lighter;
}

header a:hover{
    color: darkorange;
    font-weight: bold;
    font-size: 16px;
}

/* SHOWCASE */
#showcase{
    min-height: 400px;
    background: url(../img/showcase.jpg) no-repeat 0 -350px /* x-axis y-axis */; /* OR background-image: url(../img/showcase.jpg); */
    text-align: center;
    color:white;
}

#showcase h1{
    margin-top: 100px;
    font-size: 50px;
    margin-bottom: 10px;
}

#showcase p{
    font-size: 17px;
}

/* NEWSLETTER */
#newsletter{
    padding: 15px;
    color: white;
    background: #35424a;
}

#newsletter h1{
    float: left;
}

#newsletter form{
    float: right;
    margin-top: 25px;
}

#newsletter input[type='email']{       
    padding: 4px;
    height: 25px;
    width: 300px;
    text-align: center;
    text-transform: initial;
}

/* BOXES */
#boxes{
    margin-top: 20px;
}

#boxes .box{
    float: left;
    width: 30%;
    padding: 10px;
    text-align: center;
}

#boxes .box img{
    width: 90px;
}

/* Sidebar */
aside#sidebar{
    float: right;
    width: 30%;
    margin-top: 10px;
}

/* main-col */
article#main-col{
    float: left;
    width: 70%;
}

/* Sidebar */
aside#sidebar .quote input, aside#sidebar .quote textarea{
    width: 90%;
    padding: 5px;
}
/* Services */
ul#services li{
    list-style-type: none;
    padding: 20px;
    border: #cccccc solid 1px;
    margin-bottom: 5px;
    background: #e6e6e6;

}

footer{
    text-align: center;
    padding: 10px;
    background-color: orangered;
    margin-top: 5px;
}

/* Media queries */
@media(max-width:768px){
    header #branding,
    header nav,
    header nav li,
    #newsletter h1,
    #newsletter form,
    #boxes .box,
    article#main-col,
    aside#sidebar{
        float:none;
        text-align: center;
        width: 100%;
    }
    
    header {
        padding-bottom: 15px;
    }

    #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;
    }

}

