body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  position: relative;
  font-size: 1.2em;
  background-color: #FEF6E6;
}

body > * {
  margin-left: 3em;
  margin-right: 3em;
}

strong {
  color: #F5A15F;
}

a,
a:visited {
  text-decoration: none;
  color: #F55EEA;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5 {
  padding-top: 6em;
  margin-bottom: 3em;
  font-size: 1em;
}

.dialogue:before {
  content: "≫";
  margin-right: .5em;
}

.site-landing {
  text-align: center;
  min-height: 500px;
  height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.stickynav {
  position: sticky;
  top: 0;
  border-bottom: 1px solid black;
  background-color: #FEF6E6;
}

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

.main-content {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.main-content > * {
  width: 600px;
}

.main-content p {
  line-height: 2.2em;
}

footer {
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid black;
}

#socials {
  height: 90vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

footer a {
  height: 1.8em;
}

.footer-to-home {
  margin: 6em 0;
}

@media (width < 1000px) {

  body {
    font-size: 2em;
  }

  .main-nav {
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 100vw;
    padding: 0;
  }

  .main-content {
    padding: 0;
    align-items: center;
  }

  .main-content > * {
    width: 100%;
  }
}
