.CV{
    display: flex;
    flex-direction: row;
}

.columnOne {
    width: 49.5vw;
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column; */
    align-content: space-between;
}

.columnOne p {
    padding-right: 5px;
    margin: 0;
}

.contactDetails {
    padding-top: 11.5pt;
    line-height: 23pt;
}

.textsText {
    width: 49.5vw;
}

.credits {
    width: 49.5vw;
    align-self: flex-end;
    margin-bottom: 20px;
}

.columnTwo {
    width: 49.5vw;
    padding-left: 5px;
}

h4{
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    line-height: 11.5pt;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--background);
    color: var(--foreground);
    border: 1px solid black;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px ;
}

.CVinfo {
    padding-left: 60pt;
    text-indent: -60pt;
}

.CVtext {
    margin-bottom: 20px;
}

.bioText p {
    padding: 0;
    margin: 0;
}

.contactDetails {
    padding-left: 0pt;

}


@media only screen and (max-width: 800px)  {

.CV{
    display: flex;
    flex-direction: column;
}

.columnOne, 
.columnTwo,
.CVtext,
.credits,
.textsText {
    width: 96vw;
    padding: 0;
    }



}

