*{
  margin: 0; /*Removes space on sides*/
  padding: 0; /*Removes inner spacing*/
/*Makes height and width include padding*/
}

body{
  font-family:Arial;
  line-height:1.6; /*line spacing*/
  background:#eb3434;

}
h1, h2, p, ol, a {
  margin: 20px 0 10px 50px; /*Top, Right, Bottom, Left*/
}

.button{
  display: inline-block; /*Tells code it is a button*/
  margin-top: 10px; /*Space above button*/
  background:#a83232;
  padding: 8px 12px; /*Size of Button*/
}



