nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0.15em;
}

nav .Logo {
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}

nav div {
    margin-top: 1.25em;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 250ms ease-in-out;
  margin-left: .75em;
  margin-right: .75em;
}

nav a:hover {
  color: rgba(255, 255, 255, 0.75);
}
