@use "vars";

.button {
  background-color: #1c87c9;
  border: none;
  color: white;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  margin: 4px 2px;
  cursor: pointer;
}


.highlighted-passage {
  color: var(--gold);
}

.not-mobile {
  @include vars.mobile {
    display: none !important;
  }
}

.mobile-only {
  @include vars.above-mobile {
    display: none !important;
  }
}

.selection-caret {
  max-width: 0.5rem;
}