body{
    overflow-x: hidden;
}

.gridContainer{
    display: grid;
    grid-template-rows: 12% 12% 12% 12% 12% 12%;
    grid-template-columns: 15% 15% 15% 15% 15%;
    gap: 3.5rem 2rem;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-top: 4rem;
}

.digitalGridContainer{
    display: grid;
    grid-template-rows: 30% 30%;
    grid-template-columns: 15% 15% 15% 15% 15%;
    gap: 3.5rem 2rem;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-top: 6rem;
}

.gridCell{
    display: flex;
    justify-content: center;
}

.gridCell img{
    width: 75%;
    height: 50%;
}


.digitalFooter{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.gridAbout{
    display: flex;
    flex-direction: row;
    width: 95%;
    height: 95%;
    padding: 1%;
    grid-row: 1/3;
    grid-column: 1/6;
    background-color: #d7d7d7;
    overflow-y: scroll;
}

.gridAbout img{
    margin-left: 1rem;
    margin-top: 1rem;
    width: 80%;
    margin-bottom: 1rem;
}

.gridAbout div{
    margin-left: 1rem;
}

.gridAbout div p{
    margin-top: 0.5rem;
}

p{
    color: #5D455F;
    font-size: 1.25rem;
}

#pageContainer{
    position: relative;
    min-height: 100vh;
}

#contentWrap{
    padding-bottom: 2.5rem;
}

#footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5rem;
}

@media all and (max-width: 800px){
    #pageContainer{
    position: relative;
    min-height: 95vh;
    }
    p{
        font-size: 1rem;
    }
}