body
{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: whitesmoke;
}
.pageGrid
{
    display: grid;
    grid-template-columns: 1fr 10fr 1fr;
    grid-template-rows: 1fr 4fr 1fr;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(purple, black);
    position: absolute;
    top: 0;
    left: 0;
}

.content
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-column: 2/3;
    grid-row: 2/3;
    z-index: 1;
}

p
{
    font-size: 2rem;
}

h1
{
    font-size: 4rem;
}

a, a:visited
{   
    color: palegreen;
}

.logo
{
    width: 40%;
    grid-column: 2/3;
    grid-row: 2/3;
    z-index: 0;
    margin: 0 auto;
}

@media screen and (max-width: 800px)  {
    p
    {
        font-size: 1rem;
    }

    h1
    {
        font-size: 2rem;
    }
}