/* header css properties */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    margin-top: 8px
}

.header-content {
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #181818;
    margin: -8px -8px;
    box-sizing: border-box;
    padding: 0 20px;
  

    
}

.header-left {
    margin-left: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: space-between;
    height: 50px;
    width: 260px;
    flex-shrink: 0;
    
}

.header-left p {
    font-size: 1.3rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    
}

.header-right {
    margin-right: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-items: space-between;
    height: 50px;
    width: 350px;
    flex-shrink: 0;

}

.profile-pic {
    width: 60px;
    height: 60px;
    margin-right: 30px;
    


}

.pp {
    height: 100%;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}


.header__links {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 2px;
}

.header__link-wrapper {
    margin: 10px;
}

.header__link-wrapper a {
    text-decoration: none;
    color: rgb(100, 100, 100);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
}

.header__link-wrapper a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.header__link-wrapper a:hover::after,
.header__link-wrapper a.active::after {
    transform: scaleX(1);
}

.header__link-wrapper a:hover,
.header__link-wrapper a.active {
    color: #ffffff;
}

/* footer css properties */

.line-foot-start {
    width: 100%;
    border-bottom: 2px solid #000;
}

footer {
    background-color: #181818;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 2rem;

}

.footer-content {
    margin-bottom: 2rem;
}

.name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: left;
}

.description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.social {
    margin-bottom: 2rem;
}

.social span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: bold;
    text-align: left;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    text-decoration: none;
}

.social-icons a img {
    width: 30px;
    height: 30px;
}

.line-foot-end {
    width: 80%;
    border-bottom: 2px solid #000;
    margin: 20px auto;
}

.copyright {
    font-size: 0.8rem;
}

.copyright a {
    color: #fff;
    text-decoration: none;
}




@media screen and (max-width: 768px) {

    .header-left {
        margin-left: 30px;
    }

    .header-right {
        display: none;
    }
    .header-left p {
        font-size:1rem;
        
        
    }
    .profile-pic {
        width: 50px;
        height: 50px;
        margin-right: 30px;
        
    
    
    }
    .social {
        display: none;
    }
}