
/* Basic layout */

/* Mobile styles */
@media (max-width: 600px) {

#navigation {
	position: relative;
	z-index: 1000;
}

.nav-links{
    position: absolute;
    top: 70px;
    left: 0;
	width: 100%;
    background: #66ccff;
    flex-direction: column;
    padding: 1em;
    display: none;
	gap: 0.5em;
	z-index: 2000;
  }

  .nav-links.show {
    display: flex;
  }
  
/* Hamburger icon */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 30px;
  z-index: 3000;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.4s ease;
}
.nav-links a{

	text-decoration-color: #66ccff;
	color: #0066cc;
	padding: 0em;
	font-weight: bold;
}
}

/* When active, animate into an X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
