body {
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans,
    Droid Sans, Helvetica Neue, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

html,
body {
  min-height: 100vh;
}

body > div:first-child,
body > div:first-child > div:first-child,
body > div:first-child > div:first-child > div {
  height: inherit;
}

p {
  text-align: justify;
}

.container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 2rem;
}

.title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 55vh;
}

.title > div {
  line-height: 1rem;
}

.title h1 {
  font-size: 57px;
  font-weight: 300;
}

.title h2 {
  font-weight: 300;
}

.main .footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 30vh;
}

.header > .go-home {
  margin-bottom: 2rem;
}

.header a {
  color: #000;
  text-decoration: underline;
  text-decoration-style: dashed;
}

.body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.body div {
  font-size: small;
}

.body div a {
  text-decoration: underline;
  color: #000;
}

.body h2 a {
  text-decoration: none;
  color: #000;
}

.body h2 a span {
  color: #665e73;
  font-size: 1rem
}

.footer nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 10px 0 10px 0;
  display: block;
}

@media (min-width: 768px) {
  .container {
    padding: 1rem 20vw 1rem 20vw;
  }

  .title {
    width: inherit;
    align-items: center;
    height: 90vh;
  }

  .main .footer {
    height: 0vh;
  }

  .footer nav {
    white-space: nowrap;
    text-align: center;
  }

  .footer nav a {
    font-size: 15px;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 6px;
    margin: 0 5px;
    transition: all 0.2s;
  }

  .footer nav a:hover, .footer nav a.active {
    background: #efefef;
  }
}

