/* ---------- FONTS ---------- */

/*     .bevan-regular {
  font-family: "Bevan", serif;
  font-weight: 400;
  font-style: normal;
}

.bevan-regular-italic {
  font-family: "Bevan", serif;
  font-weight: 400;
  font-style: italic;
}

.birthstone-regular {
  font-family: "Birthstone", cursive;
  font-weight: 400;
  font-style: normal;
}     */

/* ---------- CORE ---------- */

h1, h2, h3, h4, h5 {   
  font-family: "Bevan", serif;
  font-weight: 400;
  font-style: normal;
}

p { font-family: Arial, Helvetica, sans-serif; }


/* ---------- BUTTONS ----------*/

button {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  touch-action: manipulation;
  color: white;
}

button:after {
  content: "";
  background-color: #171592;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

button:hover:after {
  top: 0px;
  left: 0px;
}



