/*element selectors*/
html {background-color: cornsilk;
    font-family: Arial, Helvetica, sans-serif
}
hr {border-color: black;
}
a {color: forestgreen;
    text-decoration: none;
}
/*multiple tag selectors*/
h1, figcaption {font-family: Arial, Helvetica, sans-serif;
    color: black;
}

/*descendant selectors*/
nav ul {
    list-style-type: none;
}
nav ul li a {
    text-transform: uppercase;
    text-decoration: none;
    color: forestgreen;
    line-height: 1.5;
}
/*classes*/
.float_right {float: right;
    padding: 10px;
}
.float_left {float: left;
    padding: 10px;
}
.center {margin: auto;
  width: 35%;
  padding: 10px;
}
.image_border{border: solid black 2px;
}
