.footer__button {
  width: 100%;
  height: 80px;
  border: 2px solid #41856e;
  box-sizing: border-box;
  border-radius: 25px;
  font-size: 26px;
  line-height: 26px;
  color: #41856e;
  text-decoration: none;
  padding: 0;
  transition: 0.7s;
  margin: 20px 0 20px -80px;
  display: flex;
  align-items: center;
  justify-content: center;
}  

.footer__button:hover {
  background-color: #41856e;
  color: rgb(255, 255, 255);
}

@media screen and (max-width: 1024px) {
  .footer__button {
    margin: 20px 0;
    font-size: 22px;
    line-height: 22px; 
  }
  @media screen and (max-width: 926px) {
    .footer__button {
      margin: 20px auto;
      width: 40%;
      min-height: 80px;
    }
  }
  @media screen and (max-width: 790px) {
    .footer__button {
      font-size: 22px;
      line-height: 22px; 
    }
  }
  @media screen and (max-width: 600px) {
    .footer__button {
      width: 60%;
    }
  }
}
