.nav-container{
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 10;
}
.nav-ul{
  display: flex; flex-direction: row; justify-content: center; align-items: center;
  height: 100%;
  font-family: "Pixelify Sans", sans-serif; font-size: 20px;
  gap: 40px;
}
.nav-ul li a{
  color: #fff;
}
.nav-ul li a:hover{
  text-decoration: underline;
}