#about{
    padding-top:70px;
}
.title p{
    font-size: 3.5rem;
    font-weight: 600;
}
.title hr{
    width:  20em;
    margin-bottom: 20px;
}

.about-me{
    display: grid;
    grid-template-columns: 2.6fr 1.4fr;
    grid-gap: 30px;
}

.about-me-description p{
    font-size: 1.4em;
    text-align: center;
}
.about-me-description p{
    line-height: 1.5;
}
.download-btn{
    padding:5px 8px;
    border-radius: 5px;
    background-color: #d791e3;
    cursor: pointer;
    transition: background-color 0.15s;
}
.download-btn:hover{
    background-color: #d791e3df;
}

.about-me-profile{
    display: flex;
    justify-content: center;
}
.about-me-profile img{
    object-fit: cover;
    width: 20em;
    max-height:20em ;
    border-radius: 15px;
}
@media (max-width:980px){
    .title, .about-me-description, .about-me-profile{
        font-size: 12px;
    }
}
@media (max-width:765px){
    .about-me{
        grid-template-columns: 1fr;
        transform:rotate(180deg)
    }
    .about-me > *{
        transform:rotate(180deg)
    }
}