body {
    background-color: #F9F9F9;
}

html,body{
    overflow-y:clip;
    height: 100vh;
}


.textRow {
    display: flex;
    height: 20vh;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 7%;
    margin-bottom: 2em;
}

.blurbImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.blurbsRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.blurb {
    width: 19.2%;
    margin-bottom: 1%;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

.blurb > a {
    text-decoration: none;
}

.blurbText {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 7%;
    align-items: center;
    background-color: #DCDCDC;
    border-bottom-right-radius: 6.1px;
    border-bottom-left-radius: 6.1px;
    height: 10vh;
}

.blurbImage {
    width: 100%;
    height: 18vh;
    overflow: clip;
    border-top-right-radius: 6.1px;
    border-top-left-radius: 6.1px;
}

.blurbAnchor {
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.blurbsRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
}

.blurbText p {
    color: #1A1A1A;
    font-family: 'General Sans';
    font-weight: bold;
    font-size: 1.3em;
    padding: 0 7%;
}

.textRow h1 {
    color: #1A1A1A;
    margin: 0;
    font-size: 4em;
    font-family: 'General Sans';
    font-weight: 700;
}

.blurbAnchor a {
    display: block;
    width: 100%;
    height: 100%;
}

.blurbAnchor img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blurbAnchor {
    cursor: pointer;
}

footer#footer {
    display: none;
}


@media only screen and (max-width:1600px){
    .blurbsRow {
        padding: 0 3%;
    }

    .textRow h1 {
        font-size: 3em;
    }
    .textRow {
        padding: 0 3%;
    }
    .blurbText p {
        font-size: 1.1em;
    }

}

@media only screen and (max-width:1100px){
    html, body {
        overflow: auto!important;
        height: auto;
    }
    html .blurb {
        width: 24.2%;
        margin-bottom: 1.4%;
    }
}

@media only screen and (max-width:880px){
    html .blurb {
        width: 32.2%;
        margin-bottom: 1.4%;
    }
}


@media only screen and (max-width:650px){
    html .blurb {
        width: 48.2%;
        margin-bottom: 2.9%;
    }
    .textRow {
        flex-direction: column-reverse;
        margin-bottom: 2em;
        align-items: center;
        margin-top: 2em;
    }
    html .textRow h1 {
        font-size: 1.9em;
        text-align: center;
        line-height: 120%;
    }
    html .blurb {
        width: 93.2%;
        margin-bottom: 5.9%;
    }
    html .blurbsRow {
        justify-content: center;
    }
}

