/* In your CSS file, e.g., styles.css */
@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap");
:root {
  --primary-color: #aa0f15;
}

body {
  font-family: "Karla", sans-serif;
  color: #000;
  line-height: 22px;
}

.karla {
  font-family: "Karla", sans-serif;
}

.oswald {
  font-family: "Oswald", sans-serif;
}

.spectral {
  font-family: "Spectral", serif;
}

#links-above-nav {
  padding: 1px 5px;
  background-color: #f0f0f0;
}

#links-above-nav a {
  padding: 0 5px;
}
.separator-red {
  content: "";
  width: 29px;
  height: 50px;
  background-image: url("../images/line-separator-green.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin: 0 0px;
}

li.nav-item > a.nav-link {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 5px;
}

li.nav-item > a.nav-link:hover {
  color: var(--primary-color);
}

footer {
  background-color: #e1e1e1;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.btn-black,
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
  background-color: #000;
  color: #fff;
  border-radius: 0;
}
.primary-color {
  color: var(--primary-color);
}

.margin-top-100 {
  margin-top: 100px;
}
.margin-bottom-100 {
  margin-bottom: 100px;
}
