/*
GLOBAL STYLESHEET
This stylesheet is common to all features (although each has a separate copy -- fixing that would be great)
you shouldn't have to change anything, but if you need to feel free but be careful
*/

html {
  line-height: 1;
  font-family: Superscratchy;
}

body {
  font-family: serif !important;
}

.header {
  position: fixed;
  background: black;
  z-index: 5;
  top: 0;
  width: 100%;
}

.header img {
  display: block;
  margin: 0.2em auto;
  width: 30%;
}

@media (max-width: 600px) {
  .header img {
    width: 60%;
  }
}

.header a {
  color: white;
}

.innerwrap {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
  font-size: 2em;
  line-height: 1.6;
  color: rgb(46, 34, 16);
  font-family: "NeueHaas";
  text-align: justify;
}
.innerwrap p {
  margin-bottom: 2em;
  font-size: 20px;
  font-family: "NeueHaas";
}
.innerwrap p a {
  text-decoration: none;
  color: rgb(46, 34, 16);
  cursor: pointer;
}

i {
  font-style: italic;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(100px, auto);
  column-gap: 10px;
  row-gap: 10px;
}
