:root {
  --app-bg-light: #f8f9fa;
  --app-bg-dark: #222;
  --app-text-light: black;
  --app-text-dark: white;
  --app-subtext-light: gray;
  --app-subtext-dark: #bbb;
}

.app {
  padding: 25px;
  margin-top: 40px;
  background: var(--app-bg-light);
  border-radius: 8px;
  text-align: center;
  color: var(--app-text-light);
}

.app-icon {
  width: 80px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
}

.app h3 {
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 20px;
  color: var(--app-text-light);
}

.app p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--app-subtext-light);
}

html.dark .app {
  background: var(--app-bg-dark);
  color: var(--app-text-dark);
}

html.dark .app h3 {
  color: var(--app-text-dark);
}

html.dark .app p {
  color: var(--app-subtext-dark);
}

.flex-download-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.store-button {
  display: inline-block;
  width: 160px;
  height: 60px;
}

.store-button svg {
  width: 100%;
  height: 100%;
  display: block;
}

#dream-single-post-content p > img {
  max-height: 400px;
  width: auto;
}
