@font-face {
    font-family: 'TrueNorthRough';
    src: url(/fonts/TrueNorthRoughW01-Regular.ttf);
}
@font-face {
  font-family: 'WildSpirit';
  src: url(/fonts/WildSpirit.ttf);
}
@font-face {
  font-family: 'CenturyGothic';
  src: url(/fonts/Gothic.ttf);
}

html {
  background-color: #d6dfce;
}

body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  color: #00000;
  font-family: 'CenturyGothic';
  font-size: 16pt;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0 0;
  font-family: 'TrueNorthRough';
}

p {
  margin: 0 0 0 0;
}

p, h2, h3 {
  text-align: center;
}

h1 {
  padding-left: 50px;  
}

#koala {
  margin-top: -240px;
  margin-left: 100px;
}

#koala img {
  max-width: 300vw;
  max-height: 300vh;
}

p ~ h3 {
  margin-top: 18px;
}

.content-card {
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: -10px -10px 20px 0px rgba(0, 0, 0, 0.1), 10px 10px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 15px 15px;
  width: 80vw;
  max-width: 500px;
}

.content-card > div {
  text-align: center;
}

a, a:visited, a:hover {
  color: #95a683;
}

.spirit {
  font-weight: 400;
  font-family: 'WildSpirit';
}

h1.spirit {
  font-size: 160pt;
}

h3.spirit {
  font-size: 40pt;
}

.highlight {
  color: #95a683;
}

.small, small {
  font-size: 14pt;
}

@media (max-width: 1200px) {
  body {
    flex-direction: column;
  }
  #koala {
    margin-top: -100px;
    margin-left: 0px;
  }
  
  #koala img {
    max-width: 50vw;
    max-height: 80vh;
  }
}