.div-block {
  width: 100px;
}

.section {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(153deg, #ac2b62 28%, #009bbd);
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading {
  color: #fcfcfc;
  font-family: Oswald, sans-serif;
  font-size: 10vw;
  font-weight: 700;
  line-height: 10vw;
}

.div-block-2 {
  opacity: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.paragraph {
  color: #fcfcfc;
  font-family: Oswald, sans-serif;
  font-size: 6vw;
  font-weight: 700;
  line-height: 5vw;
}

.image {
  max-width: 60%;
}

@media screen and (max-width: 991px) {
  .image {
    max-width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .image {
    max-width: 40%;
  }
}

@media screen and (max-width: 479px) {
  .image {
    max-width: 70%;
  }
}


