body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow: hidden;
}


.wafTitle {
    font-size: 16px;
    font-weight: 700;
}

.subTitle {
    font-size: 14px;
    margin-bottom: 2%;
    background-color: white;
    position: absolute;
    top: 62%;
    transform: translateY(-50%);
    padding: 0 5px;
    border-radius: 5px

}

.wafDeaths {
    font-size: 14px;
    margin-bottom: 3%;
}

#chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
}

.waffle {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    min-width: 150px;
    min-height: 150px;
}
  
.block {
    width: 9%;
    height: 9%;
    margin: 0.5%;
}


.waffleGroup {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5px;
    position: relative;
}

.dummy {
    min-width: 150px;
    height: 0;
}

.blurb {
    margin: 3%;
}

.subhead {
    margin: auto;
    text-align: center;
    margin-bottom: 2%;
    margin-top: 3%
}

@media screen and (max-width: 400px) {
    #chart {
        width: 100%;
    }
    
    .waffleGroup {
        width: 100%;
    }

    .block {
        height: unset;
    }

    #chart {
        justify-content: center;
    }
}

/* @media screen and (max-width: 700px) {
    #chart {
        width: 100%;
    }
    
    .waffleGroup {
        width: 48%;
    }

    .block {
        height: unset;
    }

    #chart {
        justify-content: center;
    }
} */


