/* CSS Document */
@font-face {
  font-family: 'Celtic';
  src: url("../fonts/bunchlo.ttf"); }
.celtic {
  font-family: Celtic; }
.thumbnail{
    width: 100px;
    height: 100px;
    display:block;
    z-index:999;
    cursor: pointer;
    -webkit-transition-property: all;
    -webkit-transition-duration: 0.02s;
    -webkit-transition-timing-function: ease;
  }

.thumbnail:hover{
    transform: scale(4);

}