.button {
  display: inline-block;
  padding: 1rem;
  line-height: 1.2;
  font-weight: 400 !important;
  color: rgba(0, 0, 0, 1) !important;
  background-color: rgba(255, 255, 255, 1);
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 1);
  border: unset !important;
  transition: color 300ms linear, background-color 300ms linear;
}

.button:hover,
.button:focus {
  color: rgba(255, 255, 255, 1) !important;
  background-color: rgba(0, 0, 0, 1);
}

@media (max-width: 960px) {
  .button {
    max-width: 240px;
    display: block;
    margin-inline: auto;
    text-align: center;
  }
}

@media (min-width: 992px) {
}
