body{
        margin:0px;
        overflow: auto;
        height: 100vh;
        width: 100vw;
    }

    /* Main grid for the site layout */
.about_masterGrid{
        display: grid;
        width: 960px;
        max-width: 960px;
        height: 100vh;
        margin: auto;
        margin-top: 0;
        padding: 10px;
        padding-top:0px;
        padding-bottom: 0px;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr ;
        grid-template-rows: 1fr 1fr 0.5fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

.about_mainArea{
    /* Define grid area */
        grid-column: 2/7;
        grid-row:3/8;
    /* Define display properties */
        display: grid;
        grid-template-columns: subgrid;
        grid-template-rows: subgrid;
    }

.about_mainArea article{
        margin: auto;
     
        grid-column: 1/6;
        grid-row: 2/6;
        height: 80%;
        width: 80%;
        z-index: 3;
        line-height: 1.25em;
        font-family: Georgia, 'Times New Roman', Times, serif;
        overflow-y: auto;
    }

.gradient_circle_br{
        position: absolute;
        bottom:0px;
        right:0px;
        height: 30vw;
        width: 30vw;

        background: radial-gradient(farthest-side at 100% 100%, black,transparent);
       
        z-index: 1;
    }

    .gradient_circle_tr{
        position: absolute;
        top:0px;  
        right:0px;
        height: 30vw;
        width: 30vw;
       
        background: radial-gradient(farthest-side at 100% 0%, black,transparent);
       
        z-index: 1;
    }

.gradient_linear{   
        width: 100%;
        height: 100%;
        background: linear-gradient(to left,black,white);
    }

.about_background{
        width : 100%;
        height : 100%;

        grid-column: 1/6;
        grid-row: 1/6;
        background-color:rgba(255, 255, 255, 0);
        z-index: 0;
        /* mix-blend-mode: difference; */
    }

.about_nav{
        display: flex;
        
        grid-row: 1/2;
        grid-column: 1/6;
        

        justify-items: center;
        align-items: center;
        text-align: center;
        
        z-index: 1;
    }

.back{
        grid-row: 8/9;
        grid-column: 6/7;
        margin: auto;
        z-index: 1;
    }

a{
        flex-grow: 1;
        font-family: Georgia, 'Times New Roman', Times, serif;
        font-weight: 200;
    }
