body{
    background-color:rgb(230, 122, 83);
    font-size: 20px;
}

p {
     background-color:cornflowerblue;
     color: #53693b;
    padding:10px;
    margin:30px;

    border: 20px ridge #53693b;
 }

h1 {
     color:crimson;
     border-bottom: 10px dashed;
     border-top: 10px dashed;
     padding-top:10px;
     padding-bottom:10px;
     text-align:center;
}

h6 {
     background-color:black;
     color:whitesmoke;
}

strong{
    color:darkolivegreen;
    text-decoration:underline;
}

/* size img elements by width usually*/
img{
    width:600px;
    max-width:100%;
}

.special {
    background-color:rgba(237, 228, 144, 0.765);
    border:5px inset orangered;
    font-family: Arial, Helvetica, sans-serif;
}

/* stylesheet specificity 
- external < embedded < inline
*/

header {
    margin:20px;
    padding:10px;
    width:300px;
    text-align:center;
    background-color: azure;

}

main {
    margin:20px;
    padding:10px;
    width:300px;
    text-align:center;
    background-color:gray
}

.class{
    background-color: antiquewhite;
}

#id{
    background-color: burlywood;
}

/*location specificty higher < lower*/

footer {
    margin:20px;
    padding:10px;
    width:300px;
    text-align:center;
    background-color: bisque;
}

footer {
    background-color:maroon}