@font-face {
  font-family: "proxima soft";
  src: url("../welcome/proximasoft.woff2");
}

html,
body {
  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch;
  flex-shrink: 0;
  flex-basis: auto;
  flex-grow: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
  /* Allows content to fill the viewport and go beyond the bottom */
  min-height: 100%;
  width: 100%;
  font-family: "proxima soft";
}

body {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(90deg, #6665f6, #13f1c9);
}

.welcome-container {
  margin: 1em auto;
  border-radius: 4px;
  background-color: #ffff;
  width: 340px;

  /* Allows you to scroll below the viewport; default value is visible */
  overflow-y: auto;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: auto;
}

.inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;

  margin: auto;
  max-width: 350px;
  text-align: center;
}

.prompt {
  margin-top: 1em;
}

.prompt > p > span {
  font-style: italic;
}

.table-wrapper {
  margin-top: 1em;
}

.table-wrapper > .badge-table > .badge-row {
  margin-top: 16px;
}

.qr-code-row {
  margin: 2em 0;
}

#qr-code {
  margin-top: 1em;
  display: flex;
  justify-content: center;
}

.store-img {
  cursor: pointer;
  height: 45px;
}

.footer {
  display: flex;
  flex-direction: column;
  font-family: "proxima soft";
  padding: 1.5em 0;
}

#copyright {
  display: flex;
  justify-content: center;
  font-size: 0.9em;
  color: #ffff;
}

.links {
  display: flex;
  margin: 0.5em auto 0 auto;
}

.links > a {
  padding: 0 0.5em;
  font-size: 0.8em;
  text-decoration: none;
  color: #ffff;
}

.links > a:not(:first-child) {
  border-left: #ffff;
  border-left-style: solid;
  border-width: 1px;
}

@media (min-width: 600px) {
  .welcome-container {
    width: 440px;
  }
}

@media (min-width: 1000px) {
  .welcome-container {
    width: 960px;
  }
}
