
.button-container {
  display: flex;
  margin: 60px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: flex;
  overflow: hidden;
  margin: 10px;
  padding: 12px 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 150ms linear;
  text-align: center;
  white-space: nowrap;
  text-decoration: none !important;
  text-transform: none;
  text-transform: capitalize;
  border-radius: 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: left;
  align-items: center;
  flex: 0 0 160px;
  color: #d2ac67;
  background:  #404041;
  border: 2px solid #d2ac67;
}
.button:hover {
  transition: all 150ms linear;
  opacity: 0.85;
  color: #202129 !important;
  background: #e1e2e2 !important;
}
.button:active {
  transition: all 150ms linear;
  opacity: 0.75;
}
