/* 1. Base */

a {
  color: currentColor;
  cursor: pointer;
  text-decoration: none;
}

/* 2. Shared */

.button {
  font-family: "Montserrat", "Quicksand", sans-serif;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.button {
  transform-origin: center;
  transition-duration: 100ms;
}

/* 3. Specific */

.contact {
  display: inline-block;
  margin-top: 1.5rem;
  vertical-align: top;
}


.button {
  background: darkslategray;
  border-radius: 290486px;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  /*color: #9013fe;*/
  color: #bbb; /* #fff --- */
  font-size: 0.875rem;
  line-height: 1;
  padding: 1em 1em; /* 1.25em 1.5em */
  text-shadow: none;
  transition-property: box-shadow, transform;
  user-select: none;
  vertical-align: top;
  white-space: nowrap;
  will-change: box-shadow, transform;
}

.button:hover {
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  transform: scale(1.02) translateY(-4px);
}

.button:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
  transform: scale(0.98) translateY(-2px);
}
