html,
body {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  color: #e7c15f;
  text-align: center;
}

.store-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(162px, max-content));
  justify-content: center;
  align-items: start;
  gap: 14px;
  margin-top: 18px;
}

.store-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 3em;
  gap: 10px;
}

.store-badge {
  height: 48px;
  display: block;
  padding: 0;
  overflow: hidden;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  text-decoration: none;
  text-indent: -9999px;
  user-select: none;
  opacity: 0.75;
  cursor: default;
}

a.store-badge {
  opacity: 1;
  cursor: pointer;
}

.store-badge[aria-disabled="true"] {
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
}

.store-badge--google-play {
  width: 162px;
  background-image: url("/assets/external/button_google_play.png");
}

.store-badge--app-store {
  width: 144px;
  background-image: url("/assets/external/button_app_store.png");
}

a.store-badge:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 18px 16px 10px;
  text-align: center;
}

.copyright {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}
