.website-name {
  font-size: 25px;
  color: white;
}

.menu-button {
  background: none;
  border: none;
  color: white;
  font-size: 27px;
  cursor: pointer;
}

/* Overlay Menu */
.overlay-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1050;
  align-items: center;
  justify-content: center;
}

.overlay-content {
  text-align: center;
}

.pages a {
  display: inline-block;
  color: white;
  font-size: 40px;
  margin: 0 20px;
  text-decoration: none;
}

.pages a:hover {
  text-decoration: underline;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.navbar {
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.menu-items {
  display: flex;
  gap: 20px;
}

.menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.menu-link:hover {
  opacity: 0.8;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
