* {
  box-sizing: border-box;
}

body {
  color: #484848;
  margin: 2em;
}

button {
  cursor: pointer;
  padding: 1em 2em;
  border: 2px solid transparent;
  border-radius: 0.25em;
  width: 100%;
  max-width: 200px;
  background-color: #03857f;
  color: white;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.2s linear;
}
button:hover {
  background-color: #fff;
  border: solid #03857f 2px;
  color: #03857f;
}
button:focus {
  background-color: #03857f;
  outline: 2px solid #03857f;
  outline-offset: 2px;
  color: #fff;
}
button:disabled {
  background-color: #f4f4f4;
  color: inherit;
  cursor: not-allowed;
}
button:disabled:hover, button:disabled:focus {
  border-color: transparent;
  background-color: #f4f4f4;
  color: inherit;
}

/*# sourceMappingURL=styles.css.map */
