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

body {
  --persian-indigo: #360568ff;
  --tekhelet: #5b2a86ff;
  --rose-quartz: #a79ab2ff;
  --olivine: #87b37aff;
  --light-green: #9ce37dff;
  --coyote: #756d54ff;
  --beige: #efeccaff;
  min-height: 100vh;
  background-color: var(--tekhelet);
}

footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

a {
  color: black;
}

h1 {
  font-family: "Rubik Spray Paint";
  font-size: 60px;
  letter-spacing: 0.1em;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--beige);
  text-shadow: 2px 2px var(--tekhelet), 5px 5px var(--coyote);
}

table {
  border: 1px solid;
  padding: 10px;
}

td {
  padding: 2px;
  border: 1px solid;
  border-bottom: 0;
}

td:first-of-type {
  background-color: var(--tekhelet);
  color: var(--beige);
}

tr:last-of-type td {
  border-bottom: 1px solid;
}

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

#main {
  background-color: var(--rose-quartz);
  color: var(--tekhelet);
  width: 750px;
  height: 400px;
  overflow-y: scroll;
  padding: 30px;
  position: relative;
  border: 4px dashed var(--light-green);
  padding-bottom: 150px;
}

#hippo {
  margin-top: -100px;
  margin-left: -700px;
  position: relative;
  z-index: 1;
  align-self: left;
}

#citation {
  font-size: 12px;
  font-weight: 300;
}

@media only screen and (max-width: 800px) {
  #wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  #main {
    width: auto;
  }

  #hippo {
    margin: 0px !important;
  }
}
