.linkStyle {
    text-decoration: none;
    color: #7B8D63;
    font-weight: bold;
}

.linkStyle:visited {
    color: #7B8D63
}

.linkStyle:hover {
    color: #7B8D63;
    text-decoration: underline;
}

.noteTextbox {
    
}


.pastIssues {
    margin-left: 100px;

}

.column {
  float: left;
  width: 24%;
  padding: 0px;
}

/* Clear floats after image containers */
.row::after {
  content: "";
  clear: both;
  display: table;
}



.zoom {
    transition: transform .5s;
    width: 140px;
    height: 200px;
    margin-left: 2px;
}
    
 .zoom:hover {
  transform: scale(2.25); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  cursor: pointer;
 
}  

    @media screen and (max-width: 500px) {
    .column {
    width: 100%;
  }
        .zoom {
        width: 90%;
        height: auto;
        }
        .zoom:hover {
            transform: none;
            cursor: pointer;
        }
        .pastIssues {
            margin-left: 0;
        }
        
}

