.nav-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0px 0px 1px 0px rgb(0, 0, 0);
  min-height: 13vh;
  height: auto;
  background-color: rgb(0, 0, 0);
}

.logo {
  text-transform: uppercase;
  font-size: 50px;
  font-weight: 900;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-align: center;
}
.logo > a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.logo > a > span {
  color: rgb(42, 123, 255);
  text-decoration: none;
}

.navegation {
  height: 80px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ul-nav {
  padding-left: 0;
  display: flex;
  margin: 0;
  gap: 10px;
  justify-content: space-around;
  transition: all 300ms;
  animation: navShow 300ms;
}

.navegation > ul > li {
  list-style: none;
}

.navegation > ul > li > a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  padding: 12px;
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 900;
  font-family: monospace;
  transition: all 300ms ease-out;
  /* text-shadow: rgb(65, 105, 225) 1px 1px 2px; */
}
.navegation > ul > li > a:hover {
  box-shadow: inset 0px 0px 1px 2px rgb(42, 123, 255);
  /* font-size: 24px; */
}
.navegation > img {
  display: none;
}

.nav-btn {
  display: none;
}

@media (max-width: 700px) {
  .logo {
    font-size: 45px;
  }
  .navegation {
    width: 100%;
    justify-content: center;
  }
  .navegation > ul {
    gap: 5px;
    width: 100%;
  }
  .ul-nav > li > a {
    padding: 5px;
    /* font-size: 22px; */
  }
}

@media (max-width: 400px) {
  .logo {
    font-size: 38px;
  }
  .ul-nav {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .navegation > ul > li > a {
    font-size: 20px;
    line-height: 40px;
  }
  .navegation {
    /* height: 60px; */
    height: auto;
    justify-content: center;
    margin-bottom: 5px;
  }
}
