html, body {
    margin: 0;
    padding: 0;
    background: #F7F7F7;
}
#nav {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

#footer {
    font-family: nyt-franklin, arial;
    margin: 40px;
    padding-top: 10px;
    border-top: 2px solid rgb(226, 226, 226);
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}
.footer_div {
    display: inline-block;
    vertical-align: top;
    width: 22%;
}
.footer_div:first-child, .footer_div:nth-child(2), .footer_div:nth-child(3) {
    margin-right: 2%;
}
.footer_div:last-child {
    padding-left: 2%;
    border-left: 1px solid #e0e0e0;
}
.footer_div a {
    color: inherit;
    text-decoration: none;
}
.footer_div a:hover {
    text-decoration: underline;
    color: #0D47A1; 
}
.header {
    color: rgb(51, 51, 51);
    font-size: 13px;
    font-weight: 700;
    font-family: nyt-franklin;
    height: 25px;
    line-height: 15px;
    text-transform: uppercase;
    width: 150px;
    margin: 0px;
}
.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.box, .smallbox {
    position: relative;
    width: 240px;
    margin: 10px;
    overflow: crop;
}
.smallbox {
    color: #414141;
    padding: 20px;
    margin: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.smallbox a {
    font-family: 'nyt-franklin', 'Helvetica Neue', garamond, helvetica, sans serif;
    color: #2a3873;
    text-decoration: none;
    font-weight: 700;
}
.smallbox:hover {
    background: #f4f4f4;
}
.box img {
    width: 240px;
    border: 1px solid #e0e0e0;
}
.box img:hover {
    width: 240px;
    border: 1px solid #9E9E9E;  
}
.box:hover .issue {
    display: block;
}

.issue {
    display: none;
    background-image: linear-gradient(180deg, rgba(255,255,255,0) 0, rgba(255,255,255,1) 100%);
    position: absolute;
    font-weight: 700;
    left: 1px;
    bottom: 5px;
    width: 240px;
    font-family: 'nyt-franklin', 'Helvetica Neue', garamond, helvetica, sans serif;
    z-index: 3;
    text-align: center;
    height: 120px;
    line-height: 200px;
    vertical-align: bottom;
    color: #2a3873;
  }