#about_me_section{
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
}

.about_me_container{
    width: 750px;   
    max-width: 90%; 
}

#about_me_section img{
    width: 250px;
    height: 250px;    
    border-radius: 50%;
    border: 8px solid var(--dark-primary-color);  
    max-width: 90%;  
}

.about_me_container p{
       
    line-height: 175%; 
    color: var(--text-color);
}

@media(max-width: 800px){
    #about_me_section{
        padding: 20px 0;
    }

    #about_me_section img{
        width: 40%;
        height: 40%; 
    }

    #about_me_section h2{
        text-align: center;
    }

    .about_me_container p{    
        
        font-size: 16px;   
    }
}