/* CSS Document for Gardening Website
Author: Noshin Hussain
Course: ITWP 1000
File: styles.css
*/

body {
    background-color: white;
    color: black;
    font-family: Arial, sans-serif;
    margin: 10px;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
}

h3 {
    text-align: center;
    font-weight: bold;
}

nav {
    text-align: center;
    background-color: teal;
    padding: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    background-color: teal;
    color: white;
    padding: 15px;
    margin-top: 20px;
}

p {
    line-height: 1.6em;
    margin: 15px;
}

img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

audio {
    display: block;
    margin: 10px auto;
}

iframe {
    display: block;
    margin: 20px auto;
}

figure {
    text-align: center;
    margin: 20px auto;
}

figcaption {
    text-align: center;
    font-weight: bold;
    margin-top: 5px;
}

@media only screen and (max-width: 550px) {
    img {
        display: none;
    }
}