body {
  background-color: transparent;
}

.navBar {
  background-color: rgba(51, 51, 51, 0);
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 8%;
  padding-right: 7%;
}

.navLinkBox {
  display: flex;
  position: static;
}

.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 临时加高，具体按需调整 */
.work {
  padding-top: 100px;
  padding-bottom: 100px;
}

.fixedNavBar {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  backdrop-filter: blur(30px) saturate(1.8);
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 30px;
}

.fixedNavBar .navLink {
  color: #000;
}

.fixedNavBar .navLogoText {
  background-image: url(./public/Logo_Text_2108_Gradient.png);
}

.copyright a:hover {
  color: #fff;
  border-color: transparent;
}