.button {
  border: 1px solid #F5F5F5;
  color: #F5F5F5;
  border-radius: 27.5px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  transition: all .3s ease-in-out;
  cursor: pointer;

  font-size: 24px;
  height: 55px;
  width: 224px;

  &:hover {
    color: #000;
    background-color: #F5F5F5;
  }
}

a {
  text-decoration: none;
}

@media (max-width: 1300px) {
  .button {
    font-size: 18px;
    height: 35px;
    width: 208px;
  }
}

@media (max-width: 767px) {
  .button {
    font-size: 12px;
    height: 23px;
    width: 162px;
  }
}