/* Styles to center text for the h1, nav, and footer elements */
h1, nav, footer, figure {
    text-align: center;
}

/* Styles the background color, font color, font style, and page margins */
body {
    background-color: #8FBC8F;
    font-family: Arial, Arial, sans-serif;
    color: #FFDEAD;
    margin: 10px;
}

/*Maintain the same font size for all headings */
h1, h2, h3 {
    font-size: 16px;
}

/*Center media content i.g sight, sound, and motion */
div.media {
    display: flex;
    justify-content: center;
    border: 0;
;
}