.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  border-radius: 46px;
  min-height: 35px;
  min-width: 110px;
  padding: 4px 18px;
  text-align: center;
  transition: all 0.12s linear;
  background: #e30614;
  font-size: 22px;
  line-height: 0.8;
}

.button:hover {
  background: #fff;
  color: #E30613;
  transition: all 0.12s linear;
}

@media screen and (max-width: 1080px) {
  .button {
    font-size: 14px;
    min-height: 45px;
    min-width: 120px;
  }
}