nav {
  width: 100%;
  display: flex;
  margin: 5px;
  justify-content: space-around;
  height: auto;
}

nav ul {
  list-style: none;
  margin-bottom: 15px;
}

nav ul li {
  display: inline-block;
  padding-right: 15px;
  padding-top: 25px;
  list-style: none;
  justify-content: center;
}

nav ul li a {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 15px;
  text-decoration: none;
  background-color: rgb(141, 167, 238);
  color: black;
  border: 1px solid rgb(128, 0, 100);
  border-radius: 5px;
  text-transform: uppercase;
  box-shadow: 0.1em 0.1em 0.5em;
}

nav ul li a:hover {
  padding: 5px 15px;
  text-decoration: none;
  box-shadow: 0.1em 0.1em 0.5em;
  color: red;
  border: 1px solid rgb(128, 0, 100);
  border-radius: 5px;
}

.color-black {
  color: black;
}
