
#skill{    
    position: relative;
}

#skill-background-img {    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
}

#skill-background-overlay{
    opacity: 0.3;
    width: 100%;
    height: 20rem;    
    background: linear-gradient(45deg, purple, aqua, blue);
    position: absolute; 
    bottom: -20rem;
    z-index: 2;
}

#skill-content-container{    
    width: 100%;
    display: flex;
    justify-content: center;
}

#skill-content{    
    font-size: large;
    line-height: 2;
    width: 70%;
    margin: 1rem;
    padding: 1rem;
    box-shadow: 1px 1px 4px 0 black;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#skill-content ul{
    list-style: none;
    width: 100%;
}

.skill-hidden-content{
    display: none;    
}
#asp-net-core{            
    width: 100%;
}
#css{
    width: 100%;
}
#reactjs{
    width: 100%;
}
#orm{
    width: 100%;
}

.skill-progress-container{
    padding-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-progress-item{
    width: 70%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.skill-space{
    width: 1.9rem;
}

.progress-container {        
    width: 100%;
    height: 0.7rem;
    background-color: #c7c2dfd8;
    border-radius: 0.2rem;
    overflow: hidden;
    position: relative;    
}

.progress-bar {
    height: 100%;
    background-color: var(--blue-color);
    border-radius: 0.2rem;
    width: 0;
    position: absolute;
    transition: width 5s ease-in-out;
}


@media(max-width: 1023px){
    #skill-background-overlay{
        height: 10rem;
        bottom: -10rem;
    }
    
    #skill-content{
        margin: 1rem;
        width: 100%;
        font-size: small;
    }

    .progress-container{
        height: 0.6rem;
    }

    .skill-progress-item{
        width: 55%;   
    }

    .skill-space{
        width: 1.2rem;
    }
    
}