/* Base */
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background-color: #F5F0E1;
  color: #3C3C3C;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'ChunkFive Print', serif;
}

/* Colors */
.bg-primary { background-color: #5c3a2a; }
.text-primary { color: #5c3a2a; }
.text-accent1 { color: #8A9A5B; }
.bg-background { background-color: #F5F0E1; }

/* Buttons */
.btn {
  background-color: #5c3a2a;
  color: white;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  transition: all 0.2s;
}

.btn:hover {
  background-color: #8A9A5B;
}

/* Links */
a {
  color: #5c3a2a;
  text-decoration: none;
}

a:hover {
  color: #8A9A5B;
}