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

/* ========= MY STYLE RULES ========= */

* {
    box-sizing: border-box;
}

body {
    line-height: 1.25;
    max-width: 48em; 
    margin: 0 auto;   
    padding-left: 2em; 
    padding-right: 2em;
	padding-top: 1em;
	text-wrap: pretty;
}

header {
	font-family: "Nanum Myeongjo", 'Times New Roman', Times, serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4em;
	color: #23486A; /* Dark blue header */
	padding-top: 0.5em;
	display: inline-block;
}

h1 {
	font-family: "Poppins", 'Gill Sans', 'Trebuchet MS', sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2em;
	color: #3B6790; /* Core blue subhead */
	padding-top: 2em; 
	text-transform: uppercase; /* All headers will appear in all caps */
}

nav {
	margin-left: 0.5em;
}

nav a {
	padding-right: 2em;
}

img, li, p {
	font-family: "Poppins", 'Gill Sans', 'Trebuchet MS', sans-serif;
	font-style: normal;
}

li {
	display: inline-block; /* Menu is styled horizontally, not vertically */
	text-transform: uppercase; /* Menu links appear in all caps */
	padding-top: 1em;
	font-weight: 600;
}

img {
	margin-left: 1em;
	margin-right: 1em;
	float: right; /* Images appear on the right side of the text like a news article */
}

p {
	font-weight: 400;
	line-height: 1.45;
	padding-top: 1em;
}

footer {
	font-family: "Poppins", 'Gill Sans', 'Trebuchet MS', sans-serif;
	padding-top: 2em;
	padding-bottom: 1em;
	font-size: 1em;
}

footer p {
	font-size: 0.75em;
}

svg {
	padding-top: 15px;
}

/* ========= BAGGU IMAGES STYLING ========= */
/* Special rules to manage floating two images of the same product on the right side of the page */

div {
  float: right;
  max-width: 350px; 
}

div>img {
  display: block;
  margin-bottom: 1em; 
  padding-left: 0;
}


/* ========= LINK STYLING ========= */
/* Rules to enhance link hovering and link clicking */

a {
	text-underline-offset: 0.2em;
	color: #1E5497; /* Standard blue link */
	text-decoration-color: #1E5497; /* Standard blue link underline */
	position: relative;
}

a:hover {
    color: #F54927; /* Orange hover */
    text-decoration-thickness: 0;
	text-decoration-color: #F54927; /* Orange hover underline */
}

a:active {
	top: 1px; /* Effect making the text move downward as it is pressed */
}


