/* Header */

body > header {
  position: sticky;
  top: 0;
  z-index: 999;
}

body > header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.navmenu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.sa {
  width: 170px;
}

#navlinks {
  display: flex;
  gap: 32px;
  align-items: center;
}

#navlinks a {
  color: #666666;
  font-weight: 400;
}

#navlinks a:hover {
  color: #32279d;
}

#navlinks a.current {
  color: #32279d;
  font-weight: 500;
}