#header-inner {
    grid-template-areas: 
    "business-name business-name business-name business-name owner-pic"
    "phone phone phone phone owner-pic " 
    "tag-line tag-line tag-line tag-line tag-line"
    "tick s e a mosquito"
    "owner owner website website website"
    "service-location service-location service-location service-location service-location";
}

article{
    grid-template-areas:
    "h2" 
        "boxLogo"
        "boxContentOne"  
        "boxPhotoOne"
        "boxContentThree"
        "boxContentTwo"
        "boxPhotoTwo";
        width: 100%;
}
h2 span{
    font-size: medium;
}

nav{
    
    grid-template-columns: auto auto;
}
@media screen and (max-width: 600px) {
    #header-inner {
        grid-template-areas: 
        "business-name business-name owner-pic"
        "phone phone phone" 
        "tag-line tag-line tag-line"
        "tick . mosquito"
        "s e a"
        "owner owner owner"
        "website website website"
        "service-location service-location service-location";
    }

    header h2 span{
        width: 23%;
    }
    
    header h2{
        text-indent: 0;
    }
}