
.header .header-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: transparent;
    z-index:200;
    animation: scroll-color;
    animation-timeline: scroll(y);
   
}




@keyframes scroll-color {
    
        
    0% {
        background-color: transparent;
    }
    100% {
        background-color: rgba(255, 255, 255, 0.517);   
    }

    .header-content h4{
        color: dimgray;
    }
        
}





.header-content a {
    text-decoration: none;
}

.left-section {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 40px;
    margin-top: 0px;
    width: 260px;
    


}
.left-section .menu-pic {
    width:60px;
    clip-path: circle(30px at 30px 30px);
    background-color: rgb(202, 217, 238);
    
}

.ham-icon {
    position: relative;
    cursor: pointer;
}

.left-section .ham-menu {
    width: 30px;
    clip-path: none;
    background-color: none;
    filter: invert();
    opacity: 0;
    visibility: hidden;
    position: absolute;
    cursor: pointer;
    
}

.menu-contents {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: -30px;
    width: 150px;
    height: 1fr;
    position: absolute;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    background-color: rgb(225, 225, 225);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 500;
    cursor: pointer;
 
}

#ham-menu-icon:checked ~ .menu-contents {
    opacity: 1;
    visibility: visible;
}

.menu-contents h4 {

    font-size: 18px;
    margin: 0;
    padding: 25px 15px;

}

.ham-icon .menu-contents a {
    text-decoration: none;
    color: rgb(94, 95, 96);
}

@media (max-width: 700px) {
    .left-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: 40px;
        margin-top: 0px;
        width: 300px;
}
    
    .left-section .ham-menu {
        width: 30px;
        clip-path: none;
        background-color: none;
        filter: invert();
        opacity: 1;
        visibility: visible;
        position: relative;
        margin-right: 20px;
        margin-left: -20px;
        cursor: pointer;
        
    
}

    .right-section {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        column-gap: 20px;
        margin-right: 60px;
        width: 100%;
        max-width: 450px;
        min-width: 100px;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        flex-shrink: 0;
    
}

   
}

.my-name {
    font-size: 25px;
    color: rgb(202, 217, 238);
    margin: 0;
    margin-bottom: 15px;
    
}

.right-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
    margin-right: 60px;
    flex: 1;
    max-width: 550px;
    min-width: 100px;
    
}

.right-section h4 {
    color: rgb(202, 217, 238);
    font-size: 20px;
}

