.navbar a {
    position: relative;
    font-size: 18px;
    color: rgb(222, 222, 222);
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.navbar a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: .3s;
}

.navbar a:hover::before {
    width: 100%
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background-color: rgba(1, 1, 13, 0.517);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

#logo{
    width:50px;
    
}

.footer {
    position:absolute;
    top:4000;left:0px;
    background-color:rgba(13, 11, 25, 0.436); 
    height:200px; 
    width:100%;
}

#linkedinimg {
    position:relative; 
    top:70px; 
    left:300px; 
    width:40px;}