
#project{    
    position: relative;
}

#project-background-img {    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
}

#project-background-overlay{
    opacity: 0.3;
    width: 100%;
    height: 20rem;    
    background: linear-gradient(45deg, yellow, orange, brown);
    position: absolute; 
    bottom: -20rem;
    z-index: 2;
}

#project-section-content{
    margin: 1rem;
    padding: 1rem;
    width: 75%;
    font-size: large;
    text-align: justify;
    line-height: 2;
    box-shadow: 1px 1px 4px 0 black;
    border-radius: 0.2rem;    
}

.project-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-content{
    padding: 1rem 1rem;
    list-style: circle;
    display: none;
}
.project-content a{
    color: var(--blue-color);
    text-decoration: none;    
}
/* .project-content a:visited{
    color: var(--dark-blue-color);
} */
.go-github{        
    font-weight: 600;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.link-icon{
    width: 1.2rem;
    height: 1.2rem;    
}

@media(max-width: 1023px){
    #project-background-overlay{
        height: 10rem;
        bottom: -10rem;
    }

    #project-section-content{
        width: 100%;
        font-size: small;
    }

    .link-icon{
        width: 0.8rem;
        height: 0.8rem;    
    }
}