.nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav a {
  text-align: center;
}

.nav-github {
  margin-left: 10px;
}

.nav-logo {
  text-align: center;
  margin: auto;
}

.nav-info {
  float: right;
}

.nav-logo,
.nav-info {
  color: black;
  text-decoration: none;
  font-size:2rem;
  font-weight: bold;
}

@media screen and (min-width: 1200px) {
  .nav {
    width: min(95%, 90rem);
    margin: auto;
  }
}

/* MOBILE NAV */
.topnav {
  overflow: hidden;
  position: relative;
  min-height: 3rem;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  /* background: black; */
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active link (or home/logo) */
.active {
  /* background-color: #04AA6D; */
  color: black;
}


/* BREAKPOINTS FOR DISPLAYING NAVS */
@media screen and (min-width: 830px) {
  .topnav {
    display: none;
  }
}

@media screen and (max-width: 50em) {
  .nav {
    display: none;
  }
}
