@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');


.primary {
  background-color: #485641;
}

.primary-light {
  background-color: #556945;
}

.secondary {
  background-color: #f2e4de;
}

.secondary-light {
  background-color: #f2e4de;
}

.gray {
  background-color: #84807c;
}

.gray-light {
  background-color: #84807c;
}

.black {
  background-color: #000000;
}

body {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

header, 
footer {
  background-color: #485641;
}

a {
  color: #556945;
  text-decoration: underline;

  &:hover {
    color: #485641;
    text-decoration: none;
  }
}
a.inv {
  color: #ffffff;
  text-decoration: underline;

  &:hover {
    text-decoration: none;
  }
}

a.btn {
  background-color: #556945;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;

  &:hover {
    background-color: #485641;
    color: #ffffff;
    text-decoration: none;
  }
}

a.btn-inv {
  background-color: transparent;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  border: 2px solid #ffffff;

  &:hover {
    background-color: #ffffff;
    color: #485641;
    text-decoration: none;
  }
}