.Nav{
    background: linear-gradient(to bottom, rgb(0,0,0) 0%, rgba(255, 255, 255, 0)100%);
    height: 320px;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.unorderedList {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

.listItem {
  list-style: none;
  transition: 0.5s ease;
}

.listItem:hover{
    transform: scale(1.05);
    letter-spacing: 5px;
}

.href{
 color: white;
 text-decoration: none;
}

.listText {
  font-family: "urbanist";
  font-size: 25px;
  padding-left: 47px;
  padding-right: 47px;
}

@media only screen and (max-width: 1500px) {
  .listText {
    font-family: "urbanist";
    font-size: 25px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 1300px) {
  .unorderedList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 20px;
    padding-top: 20px;
  }

    .listItem {
    font-family: "urbanist";
    text-align: center;
  }

   .listText {
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
    font-size: 30px;
  }
}

@media only screen and (min-width: 500px) {
#mobileHamburger{
  display: none;
}
}

@media only screen and (max-width: 500px) {
  .unorderedList {
    display: none;
  }

.mobileHamburger{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  transition: 0.2s ease;
}

.hamburgerOpened{
height: 425px;
}

.Nav{
  top: 0px; /* Or 10px, etc. */
  z-index: 100;
}


.HamburgerContent{
  width: 75%;
  height: 100%;
  background-color: rgba(158, 158, 158, 0.103);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  border: solid 1px rgba(255, 255, 255, 0.219);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  overflow: hidden;
}

.hamburgerIcon{
  height: 50px;
}

.navClosed{
display: none;
}

.mobileNav ul{
  list-style: none;
  font-family: "urbanist";
  padding: 0px;
  text-align: center;
  font-size: 25px;

}

.mobileNav ul li{
margin-bottom: 10px;
}

}

