/*CSS DOCUMENT*/

html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;} /*My edited version of the Eric Meyer’s reset tool. You may want to include this in all of your future CSS files. */

img {
    width: 100%; /*Please leave this line.*/
     display: block;
}

body {
	font-family: poppins, sans-serif;
}


h1 {
	background-color: rgb(247, 139, 24) ;
	color: white;
	font-size: 2.75rem;
	padding:  1.5rem 2.5rem 0rem;
	font-weight: bolder;
	font-family: serif;
	text-transform: capitalize;
	margin-bottom: 0rem;
}

figcaption {
    font-style: italic;
    font-size: 1.15rem;
    font-family: sans-serif;
	letter-spacing: 0.025rem;
	padding: 0rem;
    margin: 2.5rem
}

h2 {
	background-color: rgb(247, 139, 24);
	color: rgb(243, 230, 230);
	font-size: 2rem;
	padding: 0rem 2.5rem 1.5rem;
	margin: 0rem 0rem 0rem 0rem;
	font-family: 'Times New Roman', Times, serif;
	font-weight: capitalize;
}

h3 {
	margin: 1rem 2.5rem 0;
	padding-top: 1rem;
	font-size: 1.25rem;
	color: rgb(247, 139, 24);
	font-weight: 400;
	font-family: serif;
	text-transform: uppercase;
	letter-spacing: 0.1rem; 
}

ul {
	margin: 0rem 0rem 0rem;
    font-size: 1rem;
    font-family: sans-serif;
    list-style-type: disc;
	letter-spacing: 0.025rem;
}

ol{
    margin: 0rem 0rem 0rem;
    font-size: 1rem;
    font-family: sans-serif;
	letter-spacing: 0.025rem;
}

li { 
	margin: 1rem 2.5rem 1rem;
}

footer{
    background-color: rgb(247, 139, 24) ;
	color: white;
	font-size: 1rem;
    font-family: sans-serif;
	padding:  1.5rem 2.5rem 1.5rem;
	text-transform: capitalize;
	margin-top: 4rem;
}





/*By the way, when we use the slash-asterisk combo, it’s a comment on the CSS and it’s meant for human beings. The machine knows it is not supposed to process anything until it finds a asterisk-slash combo that ends the comment on the CSS. */
