.landing {
  font-family: 'Cinzel', serif;
  position: absolute;
  text-align: center;
  top: 20%;
  left: 10%;
  width: 80%;
  padding: 2em;
  color: hsla(179, 100%, 50%, 1);
  background-color: hsla(0, 0%, 5%, 0.5);
  letter-spacing: .2em;
}

.link {
  color: hsla(59, 98%, 76%, 0.97);
  font-weight: bold;
}
.planetFact {
  font-size: 0.9em;
  letter-spacing: 2px;
  line-height: 1.2em;
}
.landingHead {
  font-weight: bold;
  padding: 2em 0 2em 0;
  letter-spacing: .4em;
}
.planetInfo {
  font-family: 'Julius Sans One', sans-serif;
  padding: 50px;
  height: 100vh;
  width: 40vw;
  background-color: hsla(179, 100%, 50%, 0.3);
  position: absolute;
  color: white;
  opacity: 0;
  pointer-events: none;
}

@media(max-width: 370px) {
  .planetInfo {
    display: none;
  }
}
.animated {
  animation-duration: 2s;
  pointer-events: all;
}

.brackets li a::before,
.brackets li a::after {
  color: hsla(68, 94%, 73%, 1);
	display: inline-block;
	opacity: 0;
	transition: transform 0.3s, opacity 0.2s;
}
.brackets li a::before {
  color: hsla(68, 94%, 73%, 1);
	margin-right: 10px;
	content: '[';
	transform: translateX(20px);
}
.brackets li a::after {
  color: hsla(68, 94%, 73%, 1);
	margin-left: 10px;
	content: ']';
	transform: translateX(-20px);
}
.brackets li a:hover::before,
.brackets li a:hover::after,
.brackets li a:focus::before,
.brackets li a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

footer.planetNav {
  background-color: hsla(179, 100%, 50%, 0.4);
  position: absolute;
  bottom: 0px;
}

.navLinks {
  padding: 5px, 0, 5px, 0;
  min-width: 100vw;
  display: flex;
  justify-content: space-around;
}

li:hover {
  cursor: pointer;
}
