body {
  background: #e4e4d6;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.scalable {
  font-family: monospace;
  font-size: 12px;
  color: #000;
}

.scalable-left {
  transform-origin: bottom left;
}

#footer {
  z-index: 10;
  position: fixed;
  bottom: 2.5em;
  flex-direction: row;
  width: 100%;
}

#footer .content {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

#content {
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 2em;
}

#content .title {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding: 1.9em;
  width: 20%;
}

#content .title div {
  font-family: monospace;
  font-size: 18pt;
  letter-spacing: 0.25em;
  color: #000;
  text-shadow: 0px 0px 1px black;
}

#content .info {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: monospace;
  justify-content: center;
  width: 60%;
}

#content .info img {
  width: 100%;
}

h2 {
  padding-top: 1em;
  padding-bottom: 1em;
}

a {
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  color: #000;
  padding: 2px 0px;
}

#content .info a {
  text-decoration: underline;
}

#content .info a:hover {
  text-decoration: none;
}

a:hover {
  background: #000;
  color: #e4e4d6;
  text-decoration: none;
}