/* 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%;
  vertical-align: baseline;
  border: 0px solid red;
  color: #33312d;
}
/* 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;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
html,
body {
  font-family: 'Roboto', sans-serif;
  background-color: #dee4a3;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Indie Flower', cursive;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3.2rem;
  padding-bottom: 10px;
}
h4 {
  font-size: 2.5rem;
  padding-bottom: 10px;
}
p {
  line-height: 1.5;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
img {
  max-width: 100%;
}
header {
  background-color: #ba9058;
  display: flex;
  flex-direction: column-reverse;
}
header h1 {
  display: flex;
  font-size: 7rem;
  justify-content: center;
  margin-bottom: 2%;
  padding-top: 2%;
  font-weight: 1000;
  color: #e6b7be;
}
header .navlinks {
  width: 100%;
}
header .navlinks nav {
  display: flex;
  justify-content: space-around;
}
header .navlinks nav a {
  font-size: 3rem;
  padding-bottom: 2%;
  color: #33312d;
  font-weight: 1000;
}
header .navlinks nav a:visited {
  color: #9ebbc4;
}
.intro {
  padding-top: 2%;
  width: 90%;
  margin: 0 auto;
}
.intro h2 {
  font-weight: 800;
  text-align: center;
}
.intro p {
  font-size: 2rem;
}
.container {
  padding-top: 2%;
  width: 90%;
  margin-top: 2%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.container div {
  width: 42%;
  margin: 1% 3%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.container div h2 {
  font-weight: 800;
  text-align: center;
}
.container div p {
  font-size: 2rem;
  text-align: center;
}
.container div img {
  max-height: 500px;
}
.container div a {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2%;
  text-decoration: none;
}
@media (max-width: 800px) {
  .container div {
    width: 90%;
  }
}
.footer {
  padding-top: 2%;
  width: 90%;
  margin: 0 auto;
}
.footer div {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer div p {
  font-size: 1.8rem;
}
