/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, 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;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* =====================End-Reset============*/

/*element selector*/


/*value units - 0, 25px, 50%, em, rem */
html {
	font-size: 16px;
	line-height: 1.5;
	background-color:#1D5A94;
	font-family: Arial;
}


section {
	border: 2px darkslategray;
	background-color:lightgray;
	filter:drop-shadow(10px 10px 4px #5A5958);
	max-width: 90%;
	padding-top: 1rem;
	padding-bottom: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
	/* or padding: 1rem 1rem 1rem 1rem;
		top, right, left, bottom */
	/* or padding: 1rem 0
		top and bottom, left and right */
	/* or padding: 1rem
		all of them */
	margin-bottom: 1rem;
	border-radius: 4px;
}

.first-section {
	background-color:yellow;
	border-style: dotted;
	font-weight:bold;
}

h1 {
	font-family:Arial,sans-serif;
	font-weight:bold;
	font-size:2rem;
}

h2 {
	font-family:Arial,sans-serif;
	font-weight:bold;
	font-size:1.5rem;
}

/*pseudoElement selector*/
/*p::first-letter {
	font-size: 2em;
}*/

body {
	/*border: 2px solid red;*/
	max-width: 60%;
	margin: 0 auto;
	padding: 1rem 1rem;
	background-color: white;
}

img {
	display: block;
	max-width: 60%;
	margin: 0 auto;
}

figure {
	margin-bottom: 1rem;
}

/*em is length of one letter basically*/
/*rem the length of one em at root level*/
