/* CSS HEX
--old-gold: #ACA629ff;
--eerie-black: #212219ff;
--drab-dark-brown: #413C09ff;
--drab-dark-brown-2: #2F2E07ff;
--apple-green: #869F1Dff;
--gunmetal: #2F383Aff;*/

/*element selectors*/

html {
    background-color: #ACA629ff;
    font-family: 'Montserrat', sans-serif;
}
header, footer, footer a{
    background-color: #413C09ff;
}
body {
    width: 98%;
    margin: auto;
}

p {
    font-size:16px;
    line-height:150%;
    font-family: 'Montserrat', serif;
}

li {
    font-size: 14px;
}

figure {
    display: block;
    width: 420px;
}

figcaption {
    font-size: 0.875em;
    font-weight: lighter;
    text-align: center;
    display: ruby-text;
    margin-top: 0.5em;
}

/* multiple tag selectors*/
h1, h2 {
    font-family: 'Quicksand', serif;
    text-align: center;
    color: brown;
}

/*descendant tag selectors*/
nav ul {
      list-style-type: none;  
}
nav ul li a {
    color: #869F1Dff;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 200%;
    margin: 2px;
    padding: 3px;
}

figure img {
    box-shadow: 5px 5px 15px slategrey;
    text-align: center;
}

p>span {
    font-weight: bold;
}

/*id selectors*/

#container {
    width: 95%;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    background-image: url("../images/background.jpg");
    background-size: 500px 375px;
    background-repeat: no-repeat;
    background-position: bottom right;   
}



#habitats {
    font-weight: bolder;
    text-align: center;
}

/*class selectors*/

.image_border {
    border: 1px solid #2F2E07ff;
}

.floatleft {
    float: left;
    padding: 8px;
}

.floatright {
    float: right;
    padding: 8px;
}

.roundedcorners {
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
    border-radius: 50px;
    margin-bottom: 5px;
    margin-right: 15px;
}

.center {
    text-align: center;
}