/* ----------------------- LINKS NAVIGATION -----------------------*/
.link-container {
  border-style: solid;
  border-color: white;
  border-width: 1px;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.link-container:hover {
  background-color: lightblue;
}

.nav-links a {
  color: white;
  background-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.nav-links a:hover {
  color: blue;
  background-color: lightblue;
  text-decoration: none;
}

/* HIDING NAV LINKS with JavaScript by adding and removing classes*/

.hamburger {
  background-color: transparent;
  border: none;
  color: white;
  z-index: 100; /* keep the button on top of everything else*/
  position: relative;
  float: right;
  top: 1px;
  left: 13px;
}

.hamburger:hover {
  background-color: lightblue;
}

.hamburger .menu-icon {
  display: none;
}

.hide-nav-links {
  display: none;
}

/* tried to transition links, 
but nav is still there w/ opacity 0, 
user can accidentally click/*
/*.nav-links {
  opacity: 1;
}

.transition-nav-links.hide-nav-links {
  display: block;
  opacity: 0;
}

.transition-nav-links {
  transition: opacity 1s ease;
}*/

.row {
  margin: 0;
}
