body {
  /* background: url(./images/BG.svg) center center no-repeat;
    background-size: cover;*/
  height: 100vh;

  background: url(./images/BG.svg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
/* .box{
    width: 500px;
    height: 500px;
} */
.mobile {
  width: 400px;
  margin: 10px;
}
.mobile img {
  width: 100%;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 600px;
  height: 300px;
  margin: 10px;
}
.heading {
  width: 50%;
}
.store {
  display: flex;
  height: 250px;
  padding: 30px;
}
.store img {
  width: 100%;
}
.ios,
.android {
  width: 100%;
  margin: 10px;
}


@media only screen and (max-width: 700px) {
  .heading {
    width: 80%;
  }
  .store {
    flex-direction: column;
    height: 100%;
  }
}


@media only screen and (max-width: 520px) {
    .container{
        flex-direction: column-reverse;
    }
    .content{
        width: 300px;
        height: 200px;
    }
    .heading {
        width: 80%;
      }
      .mobile{
          width: 200px;
          padding: 30px;
      }
   
  }