#about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin-top: 40px;
    margin-left: 10%;
    background-color: #262626;
}

#about-text-container {
    width: 50%;
}

#about-text {
    margin: 0 60px;
    text-align: justify;
    color: white;
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.highlight-points {
    color: #EC7969;
}

#about-image-container {
    width: 50%;
}

#about-image {
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width:414px){
    #about-container {
        width: 100%;
        margin-left: 0;
        flex-direction: column-reverse;
    }
    #about-text-container {
        width: 100%;
    }
    #about-text {
        margin: 20px 10px;
        font-size: 17px;
        line-height: 25px;
    }
    #about-image-container {
        width: 100%;
    }
}