/* Buttons / links */
.btn {
  background-color: #5b946c;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease-in;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  background-color: #7eb38e;
}

.btn--outline {
  background-color: #fff;
  color: #1f1f1f;
  border: 1px solid rgba(31, 31, 31, 0.16);
  box-shadow: none;
}

.btn--outline:hover {
  background-color: #f2f2f2;
  color: #1f1f1f;
}

.btn-a {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid #d4af37;
  font-weight: 600;
}

.btn-small,
.btn-small:link,
.btn-small:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 100;
  padding: 1.2rem 2.6rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}

.page-text-link:link,
.page-text-link:visited {
  text-decoration: none;
  font-weight: 700;
  color: #4b905f;
  transition: all 0.3s;
}

.page-text-link:hover,
.page-text-link:active {
  text-decoration: underline;
}

.text-page-link {
  text-decoration: none;
  padding: 0.2rem;
  background-color: #e1b453;
  margin-top: 1rem;
}

.text-page-link:link,
.text-page-link:visited {
  display: inline-block;
  color: #000;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s;
}

.text-page-link:hover,
.text-page-link:active {
  background-color: #edc671;
}
