/* CSS Document used for the coffee table homework assignment
Author: Cameron Follett
Course: ITWP 1000
File: styles.css
Information 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 formating for tables is located in Chapter 8.*/

body {
    background-color: #f4f4f4;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px; 
    }

h1 {
    text-align: center;
    font-size: 2.5em;
    }

nav {
    text-align: center;
    }

footer {
    text-align:center;
    }

#controllers {
    text-align: center;
    border: 5px solid #333;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#Mariokart {
    text-align: center;
    border: 5px solid #333;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

#genre {
    text-align: center;
    border: 5px solid #333;
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

iframe {
    border: none;
}

#nes-console {
    text-align: center;
    border: 5px solid #333;
    border-radius: 15px;
    display: block; 
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

figure figcaption {
    text-align: center;
    margin-top: 0.5em;
    font-style: italic;
}

figure {
    text-align: center;
    margin: 0 auto;
}

figure audio {
    display: block;
    margin: 0 auto;
}
