body {
    margin: 0;
    padding: 0;
    background-color: var(--backgoundColor);
    font-family: var(--main-font);
}

a {
    text-decoration: none;
  	color: var(--compliment);
}

.errTxt { color: var(--error)}

.mainFlexbox {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
}

main {
    flex-grow: 2;
}

#mainContent {
    padding: var(--mainContentPadding);
}

.goBackLink {
  	color: var(--compliment);
  	text-decoration: underline;
}

.section {
    overflow: auto;
}

.sectionTitle {
    color: var(--main);
}

.section p {
    color: var(--white);
    font-family: var(--main-font);
    line-height: 1.5em;
  	text-align: justify;
}

.contactWrapper {
    background-color: var(--white);
}

.button-main {
    padding: 12px 16px;
    background-color: var(--main);
    color: var(--white);
    width: fit-content;
    border-radius: 4px;
}

.homeSection {
    display: flex;
    justify-content: space-between;
    align-content: space-between;
    gap: 10vw;
    flex-direction: var(--main-flex-dir);
}
.profileImageContainer {
    /* width: 25vw;
    height: 25vw; */
    max-width: var(--img-max-width);
    aspect-ratio: 1;
    overflow: hidden;
}

.profileImage {
    filter: grayscale(100%);
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 16px;
    height: 100%;
    width: 100%;
}

.aboutSection {
  width: var(--about-section-width);
}
