
#about{    
    position: relative;
}

#about-background-img {    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    object-position: bottom;
    z-index: -2;
}

#about-background-overlay{
    opacity: 0.3;
    width: 100%;
    height: 20rem;    
    background: linear-gradient(135deg, red, yellow, orange);
    position: absolute; 
    bottom: -20rem;
    z-index: 2;
}

#about-content-container{    
    display: flex;    
    justify-content: center;
}

#about-section-content{
    margin: 1rem;
    padding: 1rem;
    width: 75%;
    font-size: large;
    text-align: justify;
    line-height: 1.5;
    box-shadow: 1px 1px 4px 0 black;
    border-radius: 0.2rem;    
}

#about-profile{
    display: flex;
    align-items: center;
    gap: 2rem;
}
#about-profile img{
    width: 10rem;
    height: 10rem;
    border: 0.5rem solid var(--dark-blue-color);
    border-radius: 50%;
}

.profile-info{
    line-height: 2.5;
    display: flex;
    gap: 1rem;
}
.profile-info ul{
    list-style: none;
}

#about-summary{
    padding: 1rem 0;
}

.researched-topic-content{
    padding: 1rem 0 0 2rem;
    line-height: 2;
    list-style: circle;    
}


@media(max-width: 1023px){
    #about-background-overlay{
        height: 10rem;
        bottom: -10rem;
    } 

    .profile-info{
        line-height: 2.5;
        gap: 0.2rem;
    }

    #about-section-content{
        width: auto;
        font-size: small;
    }
    
    #about-profile{
        gap: 0.2rem;
    }

    #about-profile img{
        width: 6rem;
        height: 6rem;
        border: 0.3rem solid var(--dark-blue-color);
        border-radius: 50%;
    }
}