.btn {
  display: contents;
}
.btn a {
  max-width: 32rem;
  width: 100%;
  height: 4.6rem;
  background: #3a2d25;
  color: #fff;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.btn a:hover {
  color: #3a2d25;
  background: #fff;
  border: 1px solid #3a2d25;
}
.btn.--center a {
  margin: 0 auto;
}
.btn.--reverse a {
  background: #fff;
  color: #3a2d25;
  border: 1px solid #3a2d25;
}
.btn.--reverse a:hover {
  color: #fff;
  background: #3a2d25;
  border: 1px solid transparent;
}