body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: museosans;
}

.wrapper {
  width: 100%;
}

.landing-page-wrapper {
  width: 100vw;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .content-wrapper {
    flex-direction: row;
    padding-top: 32px;
  }
}

.app-wrapper {
  flex: 1;
  width: 100%;
  background-color: #f0f8f9;
}
@media screen and (min-width: 960px) {
  .app-wrapper {
    background-color: transparent;
  }
}

#sb-ip-test {
  display: flex;
  flex-direction: column;
  align-items: center;
}

pre {
  background-color: var(--bg-color);
  border-radius: 5px;
  white-space: normal;
  margin: 0;
  overflow-x: auto;
  font-size: 15px;
  padding: 16px;
}

.version {
  display: flex;
  height: 48px;
  width: 100%;
  background-color: white;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
@media screen and (min-width: 960px) {
  .version {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
