/* CSS Document used for the coffee table homework assignment
Author: Aaron Krumholz
Course: ITWP 1000
File: style.css
Informaiton on using external CSS style sheet is located in Chapter 3. Information on media queries is located in Chapter 7. Information on tables and CSS formatting for tables is located in Chapter 8.
*/

body {
    background-color: rgb(251, 242, 228);
    margin: 10px;
    margin-bottom: auto;
    font-family: "Baskerville Old Face", Helvetica, "Apple Chancery", sans-serif;
    color: black;
}

h1, nav, footer, h2, figure{
    text-align: center;
}

h1{
    font-size: 30px;
}

nav {
    font-size: 18px;
}

footer {
    font-size: 15px;
}

figure {
    font-size: 12px;
}

p, div {
    margin: 10px;
    padding: 20px;
    line-height: 1.5em;
}

img, iframe, audio, figure {
    display: block;
    margin: auto;
}

/* Custom functions made to assist formatting specific objects without using inline or embedded formatting.*/

custom-center {
    text-align: center;
}

custom-bold {
    font-size: 17px;
    font-weight: bold;
}