body {
  color-scheme: light dark;
  background-size: 100% 100vh !important;
  background-repeat: no-repeat;
  background-position: center;
  overflow-x: hidden;
  word-wrap: break-word;
  padding: 1.5rem 1.2rem 1.5rem 1.5rem;
}
.content {
  padding-bottom: 10px;
}
.container {
  height: 100%;
  text-align: center;
  padding: 10px 25px 20px 25px;
  border: 1px solid transparent;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container > span {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
}
.container > div {
  text-align: left;
}
@media (prefers-color-scheme: light) {
  body {
    background: #f3f3f3;
  }
  .container {
    background: #fafafa;
    color: #666666;
  }
}
@media (prefers-color-scheme: dark) {
  body {
    background: #3b3b3b;
  }
  .container {
    background: #454545;
    color: #eeeeee;
  }
}
