.about-container {
    
}
.about-2col-container {
    display: flex;
    margin-bottom: 100px;
}
.about-col-70 {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-col-70:first-child {
    padding-right: 100px;
}
.about-col-70:last-child {
    padding-left: 100px;
}
.about-col-30 {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-col-30 img {
    width: 100%;
}

.about-header {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.about-pronouns {
    font-size: 1.2rem;
    background-color: white;
    border-radius: 10px;
    padding: 0 5px;
    font-weight: initial;
}
.about-text {
    font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {
    .about-2col-container {
        flex-direction: column;
    }
    .about-2col-container:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .about-col-30 {
        width: 100%;
        padding: 0 imo !important;
    }
    .about-col-70 {
        width: 100%;
        padding: 0 !important;
    }
}