.aboutme {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.aboutme > .title {
    display: block;
    font-size: 3em;
}

.card-body > p {
    font-size: 1.2em;
    line-height: 1.4em;
    margin-right: 20px;
    margin-left: 20px;
}

@media all and (max-width:1200px) {
    .aboutme {
        width: 70%;
    }
}

@media all and (max-width:700px) {
    .main-section {
        align-items: flex-start;
        height: auto;
    }
    .aboutme {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 50px;
    }
    .footer {
        position: relative;
        margin-top: 30px;
    }
}

@media all and (max-width:450px) {
    .aboutme {
        width: 100%;
        padding: 10px;
    }
    .aboutme > .title {
        margin-bottom: 30px;
    }
    .card-body > p {
        font-size: 1em;
        margin-right: 10px;
        margin-left: 10px;
    }

}