/* ABOUT PAGE */

.content--about {
    padding-top: 1.5rem;
    align-self: center;
}

.about--box {
    display: flex;
    width: 110%;
    justify-content: space-between;
}

@media only screen and (max-width: 1200px) {
    .about--box {
        width: 105%;
    }
}

@media only screen and (max-width: 930px) {
    .about--box {
        flex-direction: column;
    }
}

.image-container {
    width: 300px;
}

.image-container img {
    display: block;
    width: 100%;
    min-width: 300px;
    height: auto;
    outline: 2px solid transparent;
}

@media only screen and (max-width: 930px) {
    .image-container {
        display: flex;
        align-self: center;
    }
}

@media only screen and (max-width: 640px) {
    .image-container img {
        min-width: 150px;
    }
}

.about--text {
    display: inline-block;
    max-width: 600px;
}

.about--text p {
    font-size: 1.25rem;
    line-height: 1.5rem;
}