nav {
  border-bottom: 1px solid black;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 9999999;
  background-color: whitesmoke;
  font-size: 1rem;
}

.nav-item {
  display: inline-block;
  border-radius: 7px;
  height: 50px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-item > a {
  display: inline-block;
  margin: 0;
  color: gray;
  transition: all 0.2s ease-in-out;
}

.nav-item > a:hover {
  color: black;
  transform: scale(1.1);
  text-decoration: underline;
  cursor: pointer;
}

.nav-item > a:active {
  color: white;
}

.nav-container {
  box-sizing: border-box;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.nav-left {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: 1rem;
}

/* Questo sarà da rivedere quando si cambierà il logo! */
.nav-left > .nav-logo-img {
  width: 32px;
  height: 32px;
  background-color: black;
  border-radius: 100%;
  margin-right: 0.5rem;
}

.nav-left > .nav-logo-txt {
  font-size: 1.3rem;
  font-weight: bolder;
}

.nav-center {
  justify-content: space-around;
  /* Da cambiare in desktop view*/
  display: none;
}

.nav-right {
  /* Da cambiare in desktop view*/
  margin-right: 1rem;
}

.beta-button {
  display: flex;
  padding: 10px 15px;
  background-color: black;
  color: white;
  align-content: center;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  text-align: center;
  transition: all 0.1s ease-in-out;
}

.beta-button.desktop {
  display: none;
}

.beta-button:active {
  color: black;
  background-color: lightgray;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .beta-button.desktop {
    display: block;
  }

  .beta-button.mobile {
    display: none;
  }

  .nav-container {
    height: 80px;
  }

  .nav-container {
    width: 60%;
    margin: 0 auto;
  }

  .nav-center {
    display: flex;
    margin: 0 auto;
  }

  .nav-right {
    display: block;
  }
}
