body {
  font-family: 'Roboto', sans-serif;
  background-color: #0b5d97;
}

#menu {
  z-index: 2;
}

#menu-bar {
  width: 45px;
  height: 40px;
  margin: 60px 0 20px 80px;
  cursor: pointer;
}

.bar {
  height: 5px;
  width: 100%;
  background-color: #0b5d97;
  display: block;
  border-radius: 5px;
  transition: 0.3s ease;
}

#bar1 {
  transform: translateY(-4px);
}

#bar3 {
  transform: translateY(4px);
}

.nav {
  transition: 0.3s ease;
  display: none;
  margin-top: 60px; /* JC Distance between items and burger */
}

.nav ul {
  padding: 0 32px;
}

.nav li {
  list-style: none;
  padding: 10px 0;
}

.nav li a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.nav li a:hover {
  font-weight: bold;
}

/* Active link style */
.nav li a.active {
  color: #0b5d97; /* Highlight active link in blue */
  font-weight: bold; /* Optional: make it bold */
  font-size: 23px; /* lil bigger */
}

.menu-bg, #menu {
  top: 0;
  left: 0;
  position: absolute;
}

.menu-bg {
  z-index: 1;
  width: 0;
  height: 0;
  margin: 30px 0 20px 20px;
  background: radial-gradient(circle, #101826, #101826);
  border-radius: 50%;
  transition: 0.6s ease;
}

.change {
  display: block;
}

.change .bar {
  background-color: #0b5d97;
}

.change #bar1 {
  transform: translateY(4px) rotateZ(-45deg);
}

.change #bar2 {
  opacity: 0;
}

.change #bar3 {
  transform: translateY(-6px) rotateZ(45deg);
}

.change-bg {
  width: 590px;
  height: 1200px;
  transform: translate(-60%,-30%);
}