/* CSS file for use with homework 7 */
/* ITWP-2750 */


/* This uses the web font Roboto for the all of the body text within the web page */

/* R - CHANGED FONT / BACKGROUND/TEXT COLOR */
body {
    font-family:sans-serif;
    background-color: blanchedalmond;
    color:brown;
}

/* If you wish to add any Google or Web fonts, you can use the @font-face property to do so.
	Here is a good reference for including web fonts in your web page: https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
	
	I left my code in as an example. Note the font family name and how it's used.
*/

/* Downloaded Fonts from the Web
@font-face {
    font-family: "CustomFont";
    src: url("LuckiestGuy-Regular.ttf");
}
@font-face {
    font-family: "BodyFont";
    src: url("Roboto-Regular.ttf");
}
 */

/* The heading tags uses the LuckiestGuy-Regular.ttf font */

/* R - CHANGED FONT & SIZE */
h1 {
    text-align: center;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
}

/* R - CHANGED FONT */
h2 {
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Set the paragraph tag page margin */
p {
    margin: 1em;
}

/* This code makes the images responsive */

.responsive {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: auto;
    
}
.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

/* Formats the list of sources */
.sources {
    font-size: 11px;
    font-weight: bold;
}

/* ID that centers the validation text */
#validation {
    text-align: center;
}

/* Formats the date that resides in the footer */
#date {
    font-style: italic;
    font-size: 10px;
    text-align: center;
}