body {
  background-color: #000;
  -webkit-font-smoothing: antialiased;
}

.div-block {
  width: 80%;
  height: auto;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 140px;
}

.heading {
  font-family: museo-sans, sans-serif;
  color: #fff;
  font-size: 200px;
  line-height: 160px;
}

.heading-2 {
  margin-top: 40px;
  font-family: museo-sans, sans-serif;
  color: #919195;
  font-size: 32px;
  font-weight: 500;
}

.text-block {
  margin-top: 150px;
  margin-bottom: 150px;
  font-family: museo-sans, sans-serif;
  color: #fff;
  font-size: 46px;
  line-height: 58px;
  font-weight: 500;
}

.button {
  padding: 20px 30px;
  border: 2px solid #ef006b;
  border-radius: 2px;
  background-color: #ef006b;
  font-family: museo-sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  transition: 1s;
}

.button:hover {
  border: 2px solid #ef006b;
  background-color: rgba(239, 0, 107, 0);
}

.image {
  position: fixed;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: -10000;
  width: 56%;
  max-width: 100%;
}

@media (max-width: 1400px){
  .text-block {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .heading {
    font-size: 140px;
    line-height: 100px;
  }
  .text-block {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 42px;
    line-height: 52px;
  }
  .image {
    left: auto;
    top: auto;
    right: 0%;
    bottom: 0%;
    width: 100%;
  }
}

@media (max-width: 479px) {
  .div-block {
    padding-top: 20px;
    padding-bottom: 80px;
  }
  .heading {
    font-size: 80px;
    line-height: 80px;
  }
  .heading-2 {
    margin-top: 20px;
    font-size: 22px;
    line-height: 32px;
  }
  .text-block {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 32px;
    line-height: 38px;
  }
  .button {
    font-size: 18px;
  }
  .image {
    left: 0%;
    top: auto;
    right: auto;
    bottom: 0%;
  }
}

