/* CSS file copied into homework7 for local use */
/* ITWP-2750 - copied from HW7/styles.css */

/* This uses the web font Roboto for the all of the body text within the web page */
body {
    font-family: 'Roboto', sans-serif;
}

/* 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.
*/

/* Load web fonts from Google Fonts so local TTF files are not required */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Roboto:wght@400;700&display=swap');


/* The heading tags use the Luckiest Guy Google font */
h1 {
    text-align: center;
    font-family: 'Luckiest Guy', cursive;
}

h2 {
    font-family: 'Luckiest Guy', cursive;
}

/* 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;
}
