/* ========== About Me ========== */

.section#about_me{
    position: relative;
    z-index: 1;
    background: var(--background-color);
    text-align: left;
    
}

.section#about_me .content .intro{
    display: flex;
    flex-direction: column;
    gap:20px;
}

.section#about_me .content .intro h3{
    margin:0;
    color: #8f8f8f;
    font-family: "Urbanist";
    font-weight: 500;
    font-size: 20px;
}

.section#about_me .content .intro p{
    font-family: "Urbanist";
    color:black;
    font-weight: 300;
    margin: 0;
}

@media(orientation: portrait) or (max-width:900px){
    .section#about_me .content .intro p{
        font-size: 5vw;
        width: 90%; 
    }
    .section#about_me .education p, .section#about_me .education h3{    
        font-size: 3vw;
    }
}


@media(orientation: landscape) and (min-width:900px){
    .section#about_me .content .intro p{
        font-size: 2.2vw;
        width: 70%; 
    }
    .section#about_me .education p, .section#about_me .education h3{    
        font-size: 1.2vw;
    }
}


.section#about_me .content{
    display: flex;
    flex-direction: column;    
    gap:100px;    
}

.section#about_me .content .education img{
    height: 50px;
}

.section#about_me .content .education{
    display: flex;
    gap:35px;
    justify-content: end;
}

.section#about_me .content .education-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
    align-items: flex-start;
}
.section#about_me .education p, .section#about_me .education h3{    
    margin: 0;
    display: inline;
}

.section#about_me .content .introduction {
    text-align: left;
}


