.section {
  background-color: #151515;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: auto;
  min-height: 100vh;
  margin-right: 0%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
}

.div-block {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  border-radius: 0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  background-color: #ebb343;
  border-radius: 5px;
  font-family: Exo, sans-serif;
  font-size: 17px;
}

.button:hover {
  background-color: #e3a01a;
}

.button-2 {
  background-color: #ce352e;
  border-radius: 5px;
  font-family: Exo, sans-serif;
  font-size: 17px;
}

.button-2:hover {
  background-color: #c6231b;
}

.image {
  max-width: 60%;
}

.heading {
  color: #fff;
  font-family: Inconsolata, monospace;
}

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

@media screen and (max-width: 479px) {
  .div-block {
    margin-top: 5%;
  }

  .image {
    max-width: 100%;
  }

  .heading {
    text-align: center;
    font-size: 35px;
    line-height: 1em;
  }
}


