.app__Cv {
    background: #333647;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3rem;
}

.app__Cv br {
    margin-bottom: 1.4rem;
}

.app__CvTitle {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    width: 80%;
}

.app__CvContent {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    align-items: start;
    margin-bottom: 2rem;
}

.app__CvContent em {
    color: var(--color-textHeading)
}

.app__CvContentLeft {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: start;
    width: 40%;
}

.app__CvContentRight {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: start;
    width: 40%;
}

.app__CvContentRightExperience {
    overflow-y: scroll;
}

.app__Cv h1 {
    font-size: 86px;
    text-transform: uppercase;
    color: var(--color-textHeading);
}

.app__Cv h2 {
    font-size: 50px;
    font-weight: bold;
    color: var(--color-textHeading);
}

.app__Cv h3 {
    font-weight: bold;
    color: var(--color-textHeading);

}

.app__Cv p {
    font-size: 22px;
    line-height: 1.5em;
    color: var(--color-text);
    margin: 0;
}

@media screen and (max-width: 950px) {
    .app__CvContent {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .app__Cv h2 {
        text-align: center;
    }

    .app__CvContentLeft {
        width: 80%;
        margin-bottom: 3rem;
    }



    .app__CvContentRight {
        width: 80%;
        margin-top: 3rem;
    }

    .app__CvContentRightExperience {
        overflow-y: visible;
        max-height: fit-content !important;
    }
}

@media screen and (max-width: 550px) {
    .app__Cv p {
        font-size: 16px;
        line-height: 1.5em;
    }

    .app__Cv h1 {
        font-size: 40px;

    }
    
    .app__Cv h2 {
        font-size: 28px;

    }
}