* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100vw;
  height: 100vh;
  background: #4776e6;
  background-color:  #8e54e9;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#navegador {
  width: 100%;
  height: 60px;
  background: #4776e6;
  box-shadow: 0 0 10px 1px;
  margin-bottom: 40px;
}

ul {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0 100px;
}

ul li {
  display: block;
  height: 100%;
  margin-right: 30px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff;
  text-transform: uppercase;

}

ul li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 0 0 15px #8e54e9;
  transition: all 300ms linear;
}
/*cambia el color del texto del item de menú y aumenta su tamaño 120% */
 ul li a:hover {
  color: #111;
  transform: scale(1.2);
  text-shadow: none;

}