.header {
  margin: 0px;
  font-family: Lucida Sans;
  color: white;
}

.navigation-bar { /*SECTION*/
  background-image: linear-gradient(rgb(121, 34, 31) -130%, rgb(86, 7, 165) 260%);
  height: 80px;
  display: flex;
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  left: 0;
  justify-content: right, space-between;
  align-items: center;
}

.logo-box {
  font-size: 36px;
  padding: 0px 20px;
  margin-top: 4px;
  width: 240px;
  align-items: center;
  justify-content: center;
}

.right-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  min-width: 1fr;
  height: 80px;
}
.navigation-button {
  width: 130px;
  height: 80px;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  text-align: center;
  text-decoration: none;
}
.navigation-button:hover {
  background-image: linear-gradient(rgba(121, 34, 31, 0) 60%, rgba(86, 7, 165, 0.35) 100%);
}

.navigation-button:active {
  background-image: linear-gradient(rgba(121, 34, 31, 0) 60%, rgba(86, 7, 165, 0.75) 100%);
  transition: 0.1s;
}

/* rgb(70, 47, 88); */