* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100vh;
  height: 100vh;
  display: initial;
  font-family: 'Inter', sans-serif;
  background-color: #29313A;
  background-image: url(image/wave.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

p {

  color: #fff;
  font-size: 20px;
  line-height: 36px;
}

/* a {
  width: 100%;
  height: 100%;
} */

/* MAIN */
.container {
  height: 100vh;
  justify-content: center;
  align-content: center;
  grid-template-columns: 1fr 20% 1fr;
  /* grid-template-columns: 2fr 1fr 2fr; */
  /* grid-template-columns: 35% 20% 35%; */
  column-gap: 24px;
  row-gap: 36px;
  display: grid;
  padding: 32px;
  grid-template-areas:
    "text_kz phone text_ru"
    "app_store phone google_play";
}

.fill-text {
  background-color: #E1056D;
  border-radius: 9px;
  padding: 2px;
}

.app-store {
  width: auto;
  grid-area: app_store;
}

.google-play {
  width: auto;
  grid-area: google_play;
}

.text-ru {
  /* width: 480px; */
  grid-area: text_ru;
}

.text-kz {
  /* width: 480px; */
  grid-area: text_kz;
}

.ios-qr {
  width: 164px;
  height: 166px;
  background-image: url(image/ios-qr.jpg);
  background-size: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.app-store-button {
  width: 164px;
  height: 48px;
  background-image: url(image/app-store.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
}

.android-qr {
  width: 164px;
  height: 166px;
  background-image: url(image/android-qr.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin-bottom: 16px;
}

.google-play-button {
  /* width: 225px; */
  width: 164px;
  height: 48px;
  background-image: url(image/google-play.jpg);
  background-size: cover;
  border-radius: 10px;
}

.phone {
  grid-area: phone;
  background-image: url(image/image-phone.png);
  width: auto;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 1024px) {
  .container {
    grid-template-areas:
      "text_kz text_ru"
      "app_store google_play";
    grid-template-columns: repeat(2, 1fr);
  }

  .phone {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 22px;
  }

  .container {
    padding: 24px 6px;
    column-gap: 12px;
  }

  .ios-qr {
    width: 148px;
    height: 148px
  }

  .android-qr {
    width: 148px;
    height: 148px
  }

  .app-store-button {
    width: 148px;
    height: 44px
  }

  .google-play-button {
    width: 148px;
    height: 44px
  }

  /* .container {
    grid-template-areas:
      "text-kz text-ru"
      "app-store google-play"
    ;
    grid-template-columns: 1fr 1fr;
  } */
}

@media screen and (max-width: 440px) {
  .container {
    grid-template-areas:
      "text_kz text_kz"
      "text_ru text_ru"
      "app_store google_play"
      "phone phone"
    ;
    justify-items: center;
  }
}