@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* https://colors.dopely.top/color-blender/ffffff-012660-5 */

/* Meyer reset */
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;
}

/* Basics */
body {
  background: #012660;
  color: #d5dbe5;
  font-family: Lora, serif;
  font-weight: 400;
}

h1 {
  font-weight: 700;
}

a {
  color: white;
}

p {
  margin: 1em 0;
}

/* Layout */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

article {
  flex: 1;
}

.content {
  max-width: 800px;
  padding: 0 1em;
  margin: 0 auto;
}

header,
footer {
  padding: 1em 0;
  background: #0E1321;
}

/* Article */

article {
  position: relative;
}

article::before,
article::after {
  content: " ";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 600px;
}
article::before {
  z-index: -2;
  background: url(./background.jpg) no-repeat center bottom;
}
article::after {
  z-index: -1;
  background:
    linear-gradient(1deg, rgba(1,38,96,0) 0%, rgba(1,38,96,1) 100%),
    linear-gradient(-1deg, rgba(1,38,96,0) 0%, rgba(1,38,96,1) 100%);
}

article p {
  padding-bottom: 1em;
}

/* Header */

header > .content * {
  display: inline-block;
}

header a {
  text-decoration: none;
  padding: 0 0 2px 0;
}
header a:hover,
header a.current {
  border: 1px none #8093b0;
  border-style: none none dashed none;
}
nav li::before {
  content: "•";
  padding: 0 1em;
}
