/* 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;
  font-family: "Lato", Calibri, Arial, Helvetica, sans-serif;
  color: #4e4e4e;
}
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;
}

html {
  background-color: #e5edf6;
}
#content {
  max-width: 960px;
  padding: 4em 3em 2em;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
  margin: 1.5em auto;
  background-color: #fff;
}
/*======= TYPOGRAPHY =======*/

p {
  font-size: 1rem;
  line-height: 1.5;
}
p + p {
  margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
  color: #194a82;
}

header p:first-of-type {
  font-size: 4em;
  margin-top: 0;
  color: #194a82;
  font-family: "Playfair Display", Georgia, "Times New Roman", Times, serif;
}

header p:nth-of-type(2) {
  font-style: italic;
  text-align: right;
  margin-top: 1.2em;
  color: #484848;
}

h1 {
  font-size: 2.4em;
  line-height: 1.2;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

/*======= NAVIGATION & LINKS =======*/
nav ul {
  margin-top: 1em;
}
nav li {
  display: inline-block;
}
nav li + li {
  padding-left: 0.8em;
  border-left: 2px solid #c0c0c0;
  margin-left: 0.8em;
}

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

/*======= IMAGES =======*/

img {
  float: right;
  width: 100%;
  height: auto;
  max-width: 275px;
  margin-left: 1.4em;
  margin-bottom: 1em;
}

/*======= FOOTER ======*/
footer {
  border-top: 1px solid gray;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
}

a {
  color: #c81e04;
}

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