/* CSS Document used for Web PROJECT 1
Author: Daphney Walker
Course: ITWP 1000
FILE: styles.css
*/


body{
    margin: 10px;
    font-family: Verdana ;
    color: #161684;
    background-color: #f4f4a1;

}

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

main{
    text-align: center;
}

nav{
    text-align: center;
}

footer{
    text-align: center;
}

li{
    list-style: none;
    text-align: center;
}

/*table formatting*/
table{
    margin: auto;
    border: 2px solid #f9f8f8;
}

figcaption{
    font-size: smaller;
    text-align: center;
}

.audio-center{
    text-align: center;
    margin-top: 0.5em;
}

iframe{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*media query that hides the image when the screen size is @ 550 pixels or lower*/
@media only all and (max-width: 550px){
    img{
        display: none;
    }
}