@charset "UTF-8";
/* CSS Document for homework1
Author: Andrew Addens
Course: ITWP 1050
File: styles.css */


body {  /* sets font size, type, and background color */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: hsl(209, 91%, 54%)
}

footer {
    text-align: center;
}

.headerClass { /* Class to format headings*/
    text-align: center;
    font-size: 24px;
    color: #493201;
}

#header{ /* ID to format main page tile*/
    font-size: 28px;
    text-align: center;
    color: #493201;
}




/* responsive and centered image class */
img.responsive {
    max-width: 100%; /* allows the image to scale down if it has to, but it will not scale up in size to be larger than its original size */
    height: auto;
    text-align: center;
    display: block; /* allows image to center itself */
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}





