/* element selectors */
html {
    background-color: rgb(255, 255, 238); 
    font-family: trebuchet, geneva, sans-serif;
}

body {
    width: 98%;
    margin: auto;
    border: 2px solid #e0e0e0;
    padding: 15px;
}

/* multiple tag selectors */
h1, h2 { 
    font-family: 'ambleregular', serif;
    text-align: center;
    color: chocolate;
    border-bottom: 3px double chocolate;
}

h3 {
    font-family: 'ambleregular', serif;
    color: #964B00;
    border-left: 4px solid chocolate;
    padding-left: 10px;
}

img, video, embed {
    max-width: 60%;
    border: 2px solid #964B00;
} 

p {
    font-family: georgia, serif;
    line-height: 1.6;
    color: #333;
}

/* descendant selectors */
nav ul {
    list-style-type: none;
    background-color: #f4e4bc;
    border-radius: 5px;
    padding: 10px;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a { 
    text-transform: uppercase;
    text-decoration: none;
    line-height: 200%;
    color: #964B00;
    font-weight: bold;
} 

ol li {
    color: #964B00;
    line-height: 1.6;
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
}

/* classes */
.floatRight {
    float: right;
    margin: 0 0 15px 15px;
    background-color: white;
    padding: 10px;
} 

.floatLeft {
    float: left;
    padding: 20px;
    margin: 0 20px 20px 0;
    background-color: white;
}

/* id selectors */
#octopus_info {
    border: 1px solid #964B00;
    padding: 15px;
    background-color: #fff8f0;
}