.navBar {
  width: 100%;
  padding: 2vh;
  background-color: rgb(22, 22, 22);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  color: white;
}

.navBar ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
}

.navBar ul li {
  background-color: rgb(32, 32, 32);
  padding: 1vh 3vh 1vh 3vh;
  border-radius: 4px;
  cursor: pointer;
  transition-duration: 500ms;
  font-weight: bold;
  margin: 0vh 1vh;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

.navBar ul li:hover {
  background-color: rgb(34, 34, 34);
}

img {
  height: 6vh;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.text-block {
  width: 80%;
  padding: 2vh;
  background-color: rgb(32, 32, 32);
  margin: 0 auto;
}

hr {
  margin: 1vh 0;
}

p {
  margin: 0;
}
