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

.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;
  min-height: calc(100vh - 6em);
  gap: 2em;
  padding-bottom: 6em;
  align-items: center;
}

#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: 40%;
}

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

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;
}

.app-store {
  width: 180px;
}

.app-store a:hover {
  background: unset;
  color: unset;
  text-decoration: unset;
}

/* Mobile Styles */
@media (max-width: 768px) {
  body {
    overflow: auto;
    height: auto;
    min-height: 100vh;
  }

  #content {
    flex-direction: column;
    height: auto;
    min-height: auto;
    gap: 1em;
    padding: 2em;
    box-sizing: border-box;
  }

  #content .title {
    width: 100%;
    padding: 1em 0;
  }

  #content .title div {
    font-size: 16pt;
    letter-spacing: 0.1em;
  }

  #content .info {
    width: 100%;
    padding: 0;
  }

  #content .info img {
    max-width: 100%;
    height: auto;
  }

  #footer {
    position: static;
    bottom: auto;
    margin-top: 2em;
    margin-bottom: 2em;
  }

  #footer .content {
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
}
