.donate {
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: center;
  gap: 1rem;
}

a.btn-donate {
  align-self: center;

  font-size: 1rem;
  font-weight: 700;

  position: relative;
  padding: 1rem 6rem;

  color: #fff;
  border-radius: 100vh;
  background: #eb6877;
  -webkit-box-shadow: 0 5px 0 #e85163;
  box-shadow: 0 5px 0 #e85163;

  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a.btn-donate i {
  margin-right: 0.5rem;
}

a.btn-donate:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #ee7f8b;
  -webkit-box-shadow: 0 2px 0 #e85163;
  box-shadow: 0 2px 0 #e85163;
}
