/* css/app.css */
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
:root {
  --black: #23221B;
  --blue: #2E6095;
  --yellow: #F5CF5D;
  --grey: #B9B4B4;
  --white: #FFF;
}
@view-transition { navigation: auto; }
@media not (prefers-reduced-motion: reduce) {
  .title-animation {
    view-transition-name: title-image;
  }
}
.nav-link {
  color: var(--white);
  text-decoration: none;
}
.nav-link:hover {
  color: var(--yellow);
}
.nav-title {
  width: 14rem;
}
.yellow {
  color: var(--yellow);
}
.container-fluid {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.d-inline-block {
  display: inline-block;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
body {
  background-color: var(--black);
  background-image: url(/assets/banner-topography.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  color: var(--white);
  font-family: "Ubuntu", sans-serif;
  margin: 0;
}
.body {
  padding: 0 16px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}
.footer {
  padding: 1rem 0rem;
  font-size: 0.8em;
}
.footer > div {
  margin: 0.25rem 0;
}
h1 {
  font-weight: 400;
}
h2 {
  font-weight: 400;
}
h3 {
  font-weight: 400;
}
ul {
  list-style-type: none;
}
.list-item {
  display: block;
  margin-bottom: 1rem;
}
.list-title {
}
.list-subtext {
  color: var(--grey) !important;
  font-style: italic;
  font-family: "Lora", serif;
}
.list-description {
  color: var(--grey) !important;
  font-family: "Lora", serif;
}
a {
  color: var(--white);
  text-decoration: none;
}
a:hover {
  color: var(--yellow);
}
p {
  font-family: "Lora", serif;
}
.blog {
  margin-top: 5rem;
}
.blog img {
  margin: auto;
  display: block;
}
.title-image {
  margin-top: 4em;
  margin-bottom: 4em;
}
.header {
}
