.aboutText
{
    grid-column: 1 / 2;
    color: var(--title-text);
    width: 100%;
    padding: .5em;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    text-align: justify;
    z-index: -1;
}

.aboutPicture
{
    grid-column: 2 / 3;
    width: 100%;
    padding: .5em;
    align-items: center;
}

.aboutPicture img
{
    height: 60vh;
}

.aboutContainer
{
    display: grid;
    grid-template-columns: 70% 30%;
    width: 80%;
    z-index: 2;
}

#aboutTitle
{
    margin: .5em;
    text-align: center;
    width: 8em;
    padding: .2em;
    color:  var(--title-text);
    z-index: 2;
}

#aboutTitle::after
{
    content: '';
    position: absolute;
    right: 0;
    top: 3.6em;
    height: .2em;
    width: calc(50vw - 4em);
    background-color: var(--title-text);
}

#aboutTitle::before
{
    content: '';
    position: absolute;
    left: 0;
    top: 3.6em;
    height: .2em;
    width: calc(50vw - 4em);
    background-color: var(--title-text);
}
