header{

    grid-template-areas:
            'title   hero'
            'intro   hero';
}

.hero
{

    grid-area: hero;
}

.title {

    grid-area: title;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.intro {

    grid-area: intro;

    margin: 0 2em;
    width: auto;


}


main .container
{
    display: grid;
    grid-template-columns: 33% 33% 33%;
}
