/* about content styles */
.mainAbout {
    display: flex;
    flex-direction: row;
    padding: 0 2% 0;
    justify-content: center;
    background-color: var(--primaryColour);
}
.mainColumnLeft{
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    flex-basis: 40%;
    margin-right: 1vw;
    margin-bottom: 7vh;
    padding-top: 4vw;
}
.mainColumnRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 40%;
    margin-left: 1vw;
    margin-bottom: 7vh;
    padding-top: 4vw;
}
img {
    width: 100%;
    height: 75vh;
    border-radius: 5px;
    object-fit: cover;
    object-position: 50% 15%;
    transform: scale(-1, 1);
}
.aboutParagraph {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.8vw;
    padding-top: 3vh;
    padding-bottom: 3vh;
    align-items: center;
}
.aboutParagraph > p {
    margin-top: 0.8vh;
    margin-bottom: 0.8vh;
}
.aboutParagraph, .resumeLink {
    box-sizing: border-box;
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 0;
    border-radius: 5px;
    background-color: var(--backgroundColour);
}
.aboutLinkContainer {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: left;
}
.resumeLink {
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-self: baseline;
    align-items: center;
    padding-top: 1vh;
    padding-bottom: 1vh;
    padding-right: 2vw;
    padding-left: 2vw;
    border: 2px solid var(--textColour);
    border-radius: 5px;
    margin-right: 1vw;
    transition: color 0.2s, background-color 0.2s;
    margin-top: 3vh;
}
.resumeLink:hover, .resumeLink:active {
    color: var(--backgroundColour);
    background-color: var(--textColour);
}
.getInTouch {
    border: none;
    color: var(--textColour);
    background-color: var(--accentColour);
    border: 2px solid var(--accentColour);
    transition: background-color 0.2s, border 0.2s;
}
.getInTouch:hover {
    background-color: var(--accentHoverColour);
    color: var(--textColour);
    border: 2px solid var(--accentHoverColour);
}
/* about content responive styles */
@media screen and (max-width: 1000px) {
    .mainAbout {
        flex-direction: column;
        justify-content: flex-start;
    }
    .mainColumnLeft {
        margin-right: 0;
        margin-bottom: 3vh;
    }
    .mainColumnRight {
        margin-left: 0;
        padding-top: 0;
    }
    img {
        height: 70vh;
        width: 75%;
        margin-bottom: 0;
    }
    .resumeLink {
        align-self: center;
    }
    .resumeLink {
        margin-right: 0;
        margin-left: 1vw;
    }
    .getInTouch {
        margin-right: 1vw;
    }
}
@media screen and (max-width: 850px) {
    img {
        height: 60vh;
    }
}
@media screen and (max-width: 650px) {
    .mainAbout {
        justify-content: flex-start;
    }
    .mainColumnLeft {
        width: 100%;
        height: 40%;
        margin-top: 30px;
        justify-content: space-evenly;
    }
    .mainColumnRight {
        width: 100%;
        height: 30%;
    }
    img {
        height: 40vh;
    }
    .aboutLinkContainer {
        justify-content: center;
    }
    .aboutText {
        align-items: baseline;
    }
    .aboutParagraph, .resumeLink {
        font-size: 1em;
    }
}