/* 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;
	line-height: 1.5em;
	padding: 1.5em;
}

#content {
	background-color: white;
	font-weight: 300;
	 max-width: 980px; 
 
	font-family: "Lato",Arial, Helvetica, sans-serif;
	padding: 4.5em 3.3em 2em;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  margin: 1.5em auto;

}
/*======= TYPOGRAPHY =======*/
header {
  text-align: left;
  padding: 20px 10px;
  margin-bottom: 25px;
}

body{
	 
  color: #333; 

}


 h1,header,p :first-child{
	font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif; 
	color: #194A82;

 }

 h1 {
  font-size: 30px;
  line-height: 1.2;
  margin-top: 1.8em; }

  h1,p{
	margin-top: 1em;
  }

header p:first-of-type {
  font-size: 3.0em;
  margin-top: 0;
}
 
header p:last-of-type{
	text-align: right;
font-style: italic;
margin-top: 1em;
}

p{
	font-size: 16px;
	margin-top: 1.9em;
}
i{
color: #333;
font-style: italic;
 }
/*======= NAVIGATION & LINKS =======*/
nav{
margin-bottom: 1.5em;
}

nav ul{
	margin-top: 1.0em;
}

nav li{
	display:inline-block;
}

nav li+li{
	padding-left:1em ;
	border-left: 2px solid #C0C0C0;
	margin-left: 0.8em;

}

nav a {
  color: #c81e04;
  text-decoration: none;
}

a:hover{
	color:#c81e04;
    text-decoration: underline #333 dotted 1px;
    text-underline-offset: 3px;
}

/*======= footer =======*/

footer {
  border-top: 1px solid gray;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  margin-top: 1.5em;
}
  footer a:first-child{
	color: #c81e04;
	text-decoration: none;
  }
  footer p{
	font-size: 0.9em;
  }

a[href*="https://"]
{
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-image: url(external-link.svg);
  padding-right: 15px;
}





/*======= IMAGES =======*/
 img{
 float: right;
 max-width: 275px;
width: 250px;
height: 250px;
margin-left: 1.4em;
margin-bottom: 1em;

 }