body{
  /*max-width: 900px;*/
  /*float: none;*/
  margin: auto; 
}
#portfolio {  
    margin: 1rem 0;
    -webkit-column-count: 4; 
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    -webkit-column-width: 33.33333333333333%;
    -moz-column-width: 33.33333333333333%;
    column-width: 33.33333333333333%;
}
.tile {
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    margin: 5px;
    width: 265px;
    height: 100px;
}
.tile:hover { 

}

.scale-anm {
  transform: scale(1);
}

    .tile img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border: 5px solid #f5f5f5;
        padding: 5px;
        margin-bottom: 1rem;
        background: #fff;
        box-shadow: 1px 2px 2px #a9a9a9;
    }

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

