.wrapper {
  background-image: url("../img/stoptouching/grabber_in_hand.jpg");
  background-repeat: no-repeat;
  background-position-y: 0;
  background-size: contain;
}

.two-column {
  display: flex;
  flex-direction: row;
}
.two-column h3 {
  text-align: center;
}
.two-column img {
  width: 80%;
  margin: 0 10%;
}
.two-column a {
  display: block;
  width: 14rem;
  margin-left: calc((100% - 14rem) / 2);
}

/*Tablet breakpoint*/
@media only screen and (min-width: 40rem) {
  .wrapper {
    background-position-y: -15vw;
  }
  .two-column {
    width: 90%;
    margin: auto;
    max-width: 800px;
  }
}
/*Desktop breakpoint*/
@media only screen and (min-width: 60rem) {
  .wrapper {
    background-size: cover;
    background-position-y: center;
  }
  .two-column {
    margin-left: 4rem;
    width: 120%;
    max-width: 800px;
    justify-content: space-between;
  }
  .two-column img {
    margin: 0;
    width: 100%;
  }
}/*# sourceMappingURL=grabber.css.map */