header{
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;

    position: fixed;
    margin-top: 20px;
    top: 0px;
    left: 30px;
    right: 30px;
    z-index: 100;

    background: rgba(255, 255, 255, 0.579); /* transparent layer */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
    transition: top 0.4s;
}

.glass::before {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.4),
    transparent 50%);
}

.name{
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.nav-link{
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    text-underline-offset: 2px;
    transition: 0.3s;
  
}

.nav-link:hover{
   text-decoration: underline;
}

.nav-items{
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-pages{
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-icons{
    display: flex;
    height: 48px;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.icon{
    display: flex;
    width: 28px;
    height: 28px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    opacity: 0.7;
}

.icon:hover{
    opacity: 1;
}

.icon-container, .icon-container{
    height: 22px;
    aspect-ratio: 1/1;
    border: none;
    border-radius: 0px;
}

.nav-font{
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
}

