/* 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 reset */

/*======= LAYOUT =======*/
*, *::before, *::after {
  box-sizing: border-box;
}

body{
	background-color: #E5EDF6;
	font-family: lato, sans-serif;
	font-weight: 400;
	color: #333;
	font-size: 1.3em;
}

#content{
	max-width: 1000px;
	margin: 40px auto;
	padding: 30px;
	background-color: #FFF;
}

/*======= TYPOGRAPHY =======*/
header p:first-of-type{
	color: #194A82;
	font-size: 3em;
	font-family: Playfair Display, serif;
	margin-top: 40px;
}

header p:last-of-type{
	font-style: italic;
	text-align: right;
	margin-top: 2em;
}

/*======= NAVIGATION & LINKS =======*/
nav{
	margin-top: 3em;
}
 nav ul{
	display: flex;
	gap: 1em;
 }


 nav ul li{
	border-right: 2px solid #808080;
	padding-right: 1em;
 }

 nav ul li:last-of-type{
	border-right: none;
 }

 nav ul li a{
	text-decoration: none;
	color: #C00;
 }

 a:hover{
	text-decoration: dotted underline #808080;
	color: #E00;
 }


/*======= MAIN CONTENT =======*/
main{
	margin-top: 5em;
}

h1{
	font-family: Playfair Display, serif;
	font-size: 2.5em;
	color: #194A82;
}

/*======= IMAGES =======*/
img{
	float:right;
	width: 35%;
	height: auto; 
    margin-left: 1.4em;
    margin-bottom: 1em;
}

main p{
	line-height: 1.5em;
	margin-top: 1em;
}

h1 + p {
  margin-top: 0.4em;
}

footer{
	display: flex;
	justify-content: space-between;
	margin-top: 5em;
	padding-top: 2em;
	border-top: 2px solid #C0C0C0;
	font-size: 0.9em;
}


/* Footer */

footer a{
	text-decoration: none;
	color:  #C00;
 }

 a[href*="https://"] {
    background-image: url(external-link.svg);
  	background-position: center right;
  	background-repeat: no-repeat;
  	background-size: 12px 12px;
  	padding-right: 15px;
}