.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 40rem;
  margin-bottom: 2rem;
  display: grid;
}

.div-block-2 {
  background-color: #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.div-block-3 {
  color: #fff;
  cursor: pointer;
  background-color: #222;
  border: 1px solid #2e2e2e;
  border-radius: 1rem;
  padding: 0 1rem 1rem;
  text-decoration: none;
}

.div-block-3:hover {
  background-color: #2c2c2c;
}

.image {
  width: 12rem;
  margin-bottom: 1rem;
}

.heading {
  color: #fff;
  margin-bottom: 2rem;
}

.paragraph {
  color: #60ffc5;
}

.link {
  color: #fff;
}

.div-block-4 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

@media screen and (max-width: 991px) {
  .heading {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .div-block {
    flex-flow: column;
    width: 100%;
    max-width: 30rem;
    display: flex;
  }

  .div-block-2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


