#maincontainer{
    position:absolute;
    top:0px;
    left:0px;
    text-align:center;
    margin-left:6em;
    margin-right:6em;
    margin-top:1.0em;
    margin-bottom:1.0em;
    overflow: hidden;
}
.link{
    height:7em;
    width:10em;
    margin-top:0.75em;
    margin-bottom:0.75em;
    margin-left:1em;
    margin-right:1em;
    position:relative;    
    border-radius:1em;
    border:0.2em solid #000000;
    -moz-box-shadow:0.5em 0.5em 0.5em rgba(0,0,0,0.6);
    -webkit-box-shadow:0.5em 0.5em 0.5em rgba(0,0,0,0.6);
    box-shadow: 0.5em 0.5em 0.5em rgba(0,0,0,0.6);
    overflow:hidden;
    display:inline-block;
    transition: all .2s ease-in-out;
    z-index:2;
}
.link:hover{
    border:0.2em solid #ff0000;
    position:relative;
    transform: scale(1.2);
}
img{
    position:absolute;
    left:-50%;
    right:-50%;
    top:0em;
    margin:auto;
    height:7em;
    width:10em;
    z-index:1;
    overflow:hidden;
    transition: all .2s ease-in-out;
}
img:hover{
    transform: scale(1.05);
}
#clearall{
    clear:both;
}
