/*-- scss:defaults --*/

$red: #9b0014;
$lightred: #ffccd0;

$navbar-bg: #9b0014;   // background color
$navbar-fg: #ffccd0;   // text color
$navbar-hl: #ffffff;   // hover/active color


@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Titillium+Web:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/*-- scss:rules --*/

h1, h2, h3, h4, h5, h6, .title {
  font-family: 'Lora', serif;
  color: $red;
}

.navbar-nav {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.nav-footer {
  background: $red;
  color: white;
}

#title-block-header {
  display: none;
}

a {
  color: $red;
  &:hover {
    color: $lightred;
  }
}

