.fade {
    float: left;
    text-align: center;
    line-height: 200px;
    font-family: Verdana, Geneva, sans-serif;
    transition: all ease-in-out 0.2s;
    cursor: pointer;
    animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
    -o-animation: fadein 2s;    
    }
    
    @-webkit-keyframes fadein {
        0% {line-height: 280px;}
      100% {line-height: 200px;}
    }
    
    @-moz-keyframes fadein {
        0% {line-height: 280px;}
      100% {line-height: 200px;}
    }
    @-o-keyframes fadein {
        0% {line-height: 280px;}
      100% {line-height: 200px;}
    }
    @keyframes fadein {
        0% {line-height: 280px;}
      100% {line-height: 200px;}
    }