@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap");

html {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-image: linear-gradient(#0e4753, #1f9eb9);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

body {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  font-family: "Overpass";
  color: white;
}

.qrcode-container {
  display: flex;
  flex-direction: row;
}

.qrcode {
  width: fit-content;
  height: fit-content;
  padding: 12px;
  background: white;
  border-radius: 12px;
}

.qrcode-main-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.scan-text {
  color: white;
  text-align: center;
}

.or-text {
  color: white;
}

.download-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 128px;
}

.google-play-button {
  height: 90px;
  cursor: pointer;
}

.google-play-button-mobile {
  height: 80px;
  cursor: pointer;
}

.app-store-button {
  margin-left: 18px;
  height: 60px;
  cursor: pointer;
}

.app-image {
  max-width: 500px;
}

@media screen and (max-width: 1250px) {
  .app-image {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .download-button-container {
    flex-direction: column;
  }

  .app-store-button {
    margin-left: 0;
  }
}

.mobile-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100vh;
  padding-top: 32px;
}

.kovernow-text {
  color: white;
}

.download-app-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center-text {
  text-align: center;
}

.get-app-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background: #f49954;
  border-radius: 24px;
  font-size: large;
  border: none;
  width: 260px;
  margin-bottom: 16px;
}

.arrow-down-icon {
  padding-top: 16px;
  padding-bottom: 16px;
}

.mobile-app-image {
  width: 260px;
}

.get-app-text {
  margin-left: 8px;
}

.kovernow-icon {
  width: 120px;
}

.hidden {
  display: none;
}