@import url("https://fonts.googleapis.com/css2?family=Rubik+Puddles&display=swap");

body {
  --vanilla: #e6d79aff;
  --citrine: #d6d22dff;
  --aureolin: #f4e513ff;
  --apple-green: #83a81bff;
  --field-drab: #5e4104ff;
  --caf-noir: #432f13ff;
  min-height: 100vh;
  background-color: var(--apple-green);
  font-family: sans-serif;
}

h1 {
  font-family: "Rubik Puddles", serif;
  font-weight: 900;
}

#wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

#maincontent {
  width: 550px;
  height: 400px;
  overflow-y: scroll;
  padding: 30px;
  background-color: var(--vanilla);
  border: 10px inset var(--caf-noir);
}

#top-text {
  margin-bottom: 50px;
}

#house-webring {
  margin-top: 10px;
}

#backlink,
#nextlink {
  color: black;
  padding: 5px;
}

#backlink:hover,
#nextlink:hover {
  background-color: var(--field-drab);
  color: var(--citrine);
}

@media only screen and (max-width: 600px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
  }

  #wrapper,
  #maincontent {
    width: 70%;
    height: auto;
  }
}
