main > h1 {
    text-align: center;
    font-size: 5em;
    margin: 13.5% 0 13% 0;
}
main > h2 {
    font-size: 2em;
    text-align: center;
    font-weight: normal;
    margin-bottom: 2.5em;
}
main > h3 {
    margin-top: 2.25em;
    font-size: 1.6em;
    text-decoration: underline;
    text-align: center;
}

.flexContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

#experienceParent > .experienceChild {
    display: flex;
    margin: 0.8em;
    flex: 1 1 0;
    min-width: 19em;
    max-width: 40%;
    flex-direction: column;
    text-align: center;
}
.experienceChild > h1 {
    font-size: 1.75em;
    border: 4px solid white;
    border-radius: 20px 20px 0px 0px;
}
.experienceChild > h2 {
    font-size: 1.25em;
    margin: 0 1em;
}
.experienceChild > hr {
    width: 70%;
    margin-bottom: 1.2em;
}
.experienceChild > ul {
    list-style-position: inside;
    margin-left: -13%;
    font-size: 1.1em;
    margin-top: 0.5em;
}

#projectsParent {
    display: flex;
    flex-direction: column;
}
.projectItem {
    display: flex;
    flex: 1 1 0;
    margin: 3.5em 0;
}
.projectImage {
    flex: 0.45 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.projectImage > img {
    width: 80%;
    height: fit-content;
}
.projectDescription {
    flex: 0.55 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto 0;
}
.projectDescription > h1 {
    text-align: center;
}
.projectDescription > * {
    margin: 0.9em 1.1em;
}

@media screen and (max-width: 750px) {
    .projectItem {
        flex-direction: column;
        margin: 2em 0;
    }
    .projectImage {
        order: 2;
    }
}