/* CSS Document used for the Web Project 1 assignment
Author: Marty Martini
Course: ITWP 1000
File: styles.css
*/

body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: rgb(205, 205, 205);
    color: rgb(0, 0, 46);
    margin: 10px;
}

h1, h2 {
    text-align: center;
}

nav {
    text-align: center;
}

nav a {
    margin-left: 4%;
    margin-right: 4%;
    text-decoration: none;
    font-size: x-large;
    white-space: nowrap;
}

.responsive {
    max-width: 100%;
    height: auto;
    border: 1px solid black;
    border-radius: 10px;
    align-self: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

figcaption {
    text-align: center;
}

div {
    max-width: 70%;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    
}

p {
    text-align: center;
}

iframe {
    align-self: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    border-radius: 10px;
}

audio {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
footer {
    text-align: center;
    margin-top: 20px;
}