.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.div-block-2 {
  max-width: 500px;
  padding: 37px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 1px 1px 20px 0 rgba(0, 0, 0, 0.23);
}

.body {
  background-color: #ececec;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url('../images/ar-bg.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ar-bg.jpg');
  background-position: 0px 0px, 50% 100%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.bold-text {
  font-size: 25px;
}

.image {
  max-width: 69%;
}

.list {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 479px) {
  .div-block-2 {
    margin-right: 20px;
    margin-left: 20px;
    padding: 20px;
  }

  .body {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.61)), to(rgba(0, 0, 0, 0.61))), url('../images/ar-bg.jpg');
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61)), url('../images/ar-bg.jpg');
    background-position: 0px 0px, 50% 100%;
  }

  .bold-text {
    font-size: 21px;
  }

  .list {
    padding: 16px;
  }
}