/* 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;
}
body {
	line-height: 1;
}
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 OF STYLE RESET ====*/


/* ===== BOX SIZING ===== */
html {
    box-sizing: border-box;
}
  *, *:before, *:after {
    box-sizing: inherit;
}

/*======================== MY STYLING RULES ========================*/

/*==== BODY STYLING ====*/
body {
    font-family: Quicksand, Verdana, Trebuchet, Calibri, sans-serif;
    font-size: 1.1em;
    line-height: 1.3em;
    color: #1d4220;
    background: #1d4220 url("images/colourful-flowers-background.png") top right repeat;
}


/*==== HEADER STYLING ====*/

header{
	color: #fff3e6;
	background-color: #1d4220;
}

h1 {
    font-family: 'Merriweather Sans', Verdana, Trebuchet, Calibri, sans-serif;
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
    padding: 1em;
}

/*==== MAIN STYLING ====*/

 main {
    line-height: 1.6em;
    /* max-width: 90vw; */
    color:#1d4220;
    background-color: #fff3e6;
    padding: 0.5em 1em;
}

h2, h3, h4, h5, h6 {
    font-family: 'Merriweather Sans', Verdana, Trebuchet, Calibri, sans-serif;
	line-height: 1.2em;
}

h2 {
    font-size: 2em;
    font-weight: 500;
    padding: 0.5em 0;
}

h3 {
    font-size: 1.5em;
    font-weight: 300;
    font-style: italic;
    padding-top: 0.5em;
}

p {
    padding: 0.5em 0;
}  


/* ==== IMAGES STYLING ====*/			/*=!!!!!!! NEED TO FIX IMAGE SIZE PROPERTIES BECAUSE THEY ARE TOO SMALL CURRENTLY!!!!!!!=*/

 main img {
    display: block;
	width: 80%;
	max-width: 400px;
    height: auto;
    border-radius: 3%;
    margin: 0.5em 0;
    box-shadow: 0 0 5px 0 #0005;
}

figure>img {
	width: 60%;
	max-width:280px;
	height: auto;
} 

/*==== FOOTER STYLING ====*/

 footer {
    /* max-width: 90vw; */
	font-size: 1em;
    text-align: center;
    color: #fff3e6;
    background-color: #1d4220;
    margin: 0 auto;
}

nav>p:last-of-type{
	font-size: 0.8em;
} 

/*==== LINK STYLING ====*/

/*in-text links*/
a:link, a:visited {
    text-decoration:underline;
    color: #1d4220;
} 

a:hover, a:active, a:focus {
    text-decoration: none;
    color: #1d4220;
}

/*footer link*/
nav{
    font-weight: 500;
    padding: 0.5em 0;
}

nav a:link, nav a:visited {
    text-decoration: none;
    color: #fff3e6;
}

nav a:hover, nav a:active, nav a:focus {
    text-decoration: underline;
    color: #fff3e6;
}

@media (min-width: 600px){
	body {
		max-width: 90vw;
		margin: 0 auto;
}
} 
/*  NEED TO FIGURE THIS IMAGE RESPONSIVE STUFF !!!!!

@media (min-width: 800px){
    main img{
        display: grid;
        grid-template-columns: repeat (2, 1fr);
    }
}*/
/* background: #1d4220 url("images/colourful-flowers-background.png") top right repeat; */
