:root {
  --bg-color: #FDFEFF;
  --main-color: #091D67;
  --secondary-color: #0B0BD6;
  --text-color: #6c757d;
  --font-family: "Manjari", "Courier New", Courier, monospace;
  --app-container-size:4 40px;
  --app-size: 340px;
}

html, body, * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  color: var(--text-color);
}

html,
body {
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-color);
}

h1 {
  color: var(--main-color);
  font-weight: normal;
}

h2 {
  color: var(--secondary-color);
  font-weight: normal;
}

p {
  font-weight: normal;
  margin-bottom: 7px;
}

.qrcode-container .qrcode {
  width: 200px;
}

.qr-code {
  background-color: var(--main-color);
  padding: 15px;
  margin: 10px;
  border-radius: 15px;
}
.qr-code img {
  border-radius: 5px;
}
.qr-code h3 {
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 0;
}

.imgs-app-container {
  width: 440px;
  height: 335px;
  position: relative;
  text-align: center;
}
.imgs-app-container .img-app {
  width: var(--app-size);
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: calc(calc(var(--app-size) / 2) * -1);
}
.imgs-app-container .img-elipse {
  width: 440px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -220px;
}

.Header {
  grid-area: Header;
  padding-top: 30px;
  padding-bottom: 30px;
}

.QRCodeAndroid {
  grid-area: QRCodeAndroid;
  padding-bottom: 30px;
}

.QRCodeIos {
  grid-area: QRCodeIos;
  padding-bottom: 30px;
}

.AppImage {
  grid-area: AppImage;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
}

.Content {
  padding-bottom: 30px;
  grid-area: Content;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 721px) {
  .grid-container {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 0.3fr 0.5fr 2fr;
    grid-template-areas: "Header Header Header Header" "Content Content AppImage AppImage" "QRCodeAndroid QRCodeIos AppImage AppImage";
  }
}
@media screen and (max-width: 720px) {
  .AppImage {
    display: none;
  }

  .qrcode {
    margin: 0 auto;
    display: block;
  }

  .container {
    padding: 15px;
  }
}
