@import url(//db.onlinewebfonts.com/c/3595ffc0e0b6cbc4936f634cabc629c7?family=HelveticaMonospacedPro-Rg);

*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body
{
    color: #B3413D;
    font-family: 'HelveticaMonospacedPro-Rg';
    margin : 0;
    height: 100vh;

    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 150px auto;
}


nav
{
    grid-area: 1 / 2 / span 1 / span 1;
    background-color: #E5E1D5;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;

}

    nav .nav__link
    {
        font-size: 2vw;
        font-weight: bold;
        text-align: center;
        color: #B3413D;
        text-decoration: none;
        display: grid;
        justify-content: center;
        align-content: center;
    }



header {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    }
    
    .url1parent { grid-area: 1 / 1 / 3 / 2; }
    .url2parent { grid-area: 2 / 2 / 4 / 3; } 


    .url1parent, .url2parent {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        height: auto;
        }
        
        .box1 { grid-area: 1 / 1 / 2 / 2; }
        .box2 { grid-area: 2 / 1 / 3 / 2; }
        .url { grid-area: 1 / 1 / 3 / 2; } 

        .box2 { background-color: #633838;}
        .url
        {
            display: grid;
            justify-content: center;
            align-content: center;
            font-size: 5vw;
            font-weight: bold;
            text-align: center;
            color: #B3413D;
            text-decoration: none;
        }
        
.pageTitle {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    }
    
    .pageTitle__box1 { grid-area: 1 / 1 / 2 / 2; }
    .pageTitle__box2{ grid-area: 2 / 1 / 3 / 2; }
    .pageTitle__text { grid-area: 1 / 1 / 3 / 2; }
    .pageTitle__subheading { grid-area: 3 / 1 / 4 / 2; } 

    .pageTitle__box2, .pageTitle__subheading { background-color: #E5E1D5; }


    .pageTitle__text
    {
        display: grid;
        justify-content: center;
        align-content: center;
        font-size: 3vw;
        font-weight: bold;
        text-align: center;
        color: #B3413D;
        text-decoration: none;
    }

    .pageTitle__subheading
    {
        align-self: end;
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: 100%;
    }

    .pageTitle__date
    {
        align-self: end;
        font-size: 3vmin;
        font-weight: bold;
        text-align: right;
        padding-right: 0.5em;
        /* padding-bottom: 1.5em; */
    }
    .pageTitle__author
    {
        align-self: end;
        font-size: 3vmin;
        font-weight: bold;
        text-align: left;
        padding-left: 0.5em;
        /* padding-bottom: 1.5em; */
    }




