html,
body {
  width: 100%;
  height: 100%;
  margin: 0%;
  font-size: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #030007;
}

img {
  display: block;
  width: 100%;
}

a {
  transition: 0.3s all;
}

a:hover {
  filter: brightness(0.7);
}

.main-wrapper {
  background-image: url(../img/bg-mobile.png);
  background-position: top center;
  background-size: 100%;
  background-repeat: no-repeat;
  min-height: 100vh;
  height: 100vh;
  padding: 16px 0 38px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3%;
  max-width: 500px;
  margin: auto;
  justify-content: space-between;
}

.button-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 10px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  background: #5c46e7;
  border-radius: 6px;
  text-decoration: none;
}
.download-btn img {
  width: 32px;
  height: auto;
  margin-left: 10px;
}

.download-btn .text {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-right: 10px;
}

.dl-app-btn:active,
.website-btn:active {
  transform: translateY(2px);
}

.showMobile {
  display: block;
}
.showDesktop {
  display: none;
}

@media screen and (min-width: 800px) {
}

#qrcode {
  width: 20%;
  height: auto;
  margin-top: 15px;
  display: none;
}
