button {
  appearance: none;
  box-sizing: border-box;
  /* color: #fff; */
  /* background-color: #1A1A1A; */
  background-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  min-height: 3.75em;
  min-width: 22%;
  outline: none;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

button:disabled {
  pointer-events: none;
}

button:hover {
  color: CanvasText;
  background-color: transparent;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

button:active {
  box-shadow: none;
  transform: translateY(0);
}
