
.theOperatordiv {
  position: relative;
  text-align: center;
}
.theOperatordiv img {
  width: 100%;
}
.centered-button {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  line-height: 50px;
  width: 15%;
  background-image: radial-gradient(circle at center center, #ff385c 0, #e61e4d 27.5%, #e31c5f 40%, #d70466 57.5%, #bd1e59 75%, #bd1e59 100%);
  color: white;
  font-weight: 600;
  padding: .375rem .75rem;
  text-decoration: none;
}

.centered-button:hover {
  color: white;
}

@media only screen and (max-width: 767px) {
  .centered-button {
    top: 98%;
    border-radius: 10px;
    width: 35%;
  }
}