.logoAndTitle {
  display: flex;
}

.navigationMenu {
  display: flex;
  align-items: center;
  width: 175px;
  justify-content: space-around;
  font-weight: bold;
  font-family: 'Be Vietnam Pro', sans-serif;
}

.navigationMenu.loggedIn {
  display: none;
  width: 275px;
}

.navigationMenuItem {
  height: fit-content;
  cursor: pointer;
}

.navigationMenuItem a {
  color: #bd3b3b;
  text-decoration: none;
}

.navigationMenuItem a:hover {
  color: #882020;
}

.logoImage {
  width: 45px;
  margin-right: 10px;
}

.appTitle {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 35px;
}

#titleContainer {
  display: flex;
  justify-content: space-between;
  background-color: rgba(250, 235, 215, 0.45);
  padding: 5px 8px 4px 8px;
  position: relative;
}

#titleContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
  z-index: -1;
  background: url("/images/blueprintbackground.jpg");
}

.headerBar {
  background-color: #ffaa5a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1
}