:root {
  --holl-red: rgb(194,54,50);
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

body {
	min-height: 100vh
}

.wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

html {
  font-family: "Lora", serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  font-kerning: normal;
  font-feature-settings: "kern", "liga", "clig", "calt";
  line-height: 1.5;
  font-size: min(max(16px, 2vw), 22px);
  background: white;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

address,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
p,
pre,
dl,
ol,
ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

a:hover,
a:active,
a:focus {
  text-decoration: underline;
}

a:visited {
  color: black;
}

.section a {
  font-weight: 600;
}

.section a::after {
  content: '→';
  margin-left: 0.8rem;
}

hr {
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}

img {
  width: 100%;
  height: 100%;
}

figure > img {
  border-radius: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

h1 {
  font-size: 2em;
  line-height: 1.25;
}

@media (min-width: 43.75em) {
  h1 {
    font-size: 2.5em;
    line-height: 1.125;
  }
}

@media (min-width: 56.25em) {
  h1 {
    font-size: 3em;
    line-height: 1.05;
  }
}

h2 {
  font-size: 1.625em;
  line-height: 1.15384615;
}

@media (min-width: 43.75em) {
  h2 {
    font-size: 2em;
    line-height: 1.25;
  }
}

@media (min-width: 56.25em) {
  h2 {
    font-size: 2.25em;
    line-height: 1.25;
  }
}

h3 {
  font-size: 1.375em;
  line-height: 1.13636364;
}

@media (min-width: 43.75em) {
  h3 {
    font-size: 1.5em;
    line-height: 1.25;
  }
}

@media (min-width: 56.25em) {
  h3 {
    font-size: 1.75em;
    line-height: 1.25;
  }
}

.nav-list {
	display: flex;
	justify-content: space-between;
	list-style: none
}

header {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

figcaption {
	font-size: 0.9rem
}