*{
  margin: 0;
  padding: 0;
  background-color: rgb(45, 64, 99);
}

.headings{
  width: 92vw;
}

.headings h1{
  color: white;
  display: flex;
  justify-content: center;
}

.payment{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
}

.qr-code{
  width: 40%;
}

.instructions{
  width: 40%;
  align-items: center;
}

.instructions li{
  color: white;
  font-weight: 600;
  font-size: 22px;
  font-family: sans-serif;
  line-height: 300%;
}
.qr-code img{
  width: 80%;
}

@media screen and (max-width:767px){
  
.headings{
  width: 100vw;
}

  .headings h1{
    font-size: 20px;
    text-align: center;
  }

  .payment{
    flex-direction: column;
  }

  .qr-code{
    width: 80%;
  }

  .qr-code img{
    width: 100%;
  }

  .instructions{
    width: 80%;
    margin-left: 20%;
  }

  .instructions li{
    font-size: 18px;
    line-height: 150%;
  }
}