.content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10% 0 10% 0;
}

.background {
    width: 100%;
    height: auto;
    background-color: rgba(127, 127, 127, 0.2);
    display: flex;
    align-items: center;
    padding: 10% 0 10% 0;
}

.cj_img {
    background-repeat: no-repeat;
    background-size: contain;
    width: 80%;
    height: auto;
    border-radius: 10px;
    opacity: 0.9;
    border: 4px solid rgba(50, 50, 50, 0.1);
}

.aboutMe_img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutMe_Text {
    color: rgb(50, 50, 50);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.aboutMe_Text strong {
    font-size: 2rem;
    color: rgb(50, 50, 50);
}

@media screen and (max-width: 600px) {
    .aboutMe_Text strong {
        font-size: 1.2rem;
    }
}

.click-here {
    color: rgb(50, 50, 50);
    transition: all 0.3s ease-in-out;
}

.click-here:hover {
    color: rgba(50, 50, 50, 0.7);
}