.tile-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
}

.tile {
    width: 188px;
    max-width: 188px;
    padding: 8px;
    -webkit-flex: 0 0 188px;
    flex: 0 0 188px;
    transition: top .3s, left .3s, opacity .3s
}

.tile-box {
    height: 120px;
    max-height: 120px;
    width: 188px;
    max-width: 188px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 0 2px 8px rgba(0, 0, 0, .2);
    box-sizing: border-box;
    background: rgba(255, 255, 255, .8);
    font-size: 28px;
    vertical-align: middle;
    text-align: center;
    display: table-cell;
    border: 1px solid rgba(14, 165, 233, 0.5);;
}

.tile-link {
    text-decoration: none
}

.tile-link:hover {
    filter: brightness(1.25);
}

.tile-title {
    display: block;
    width: 188px;
    background-color: transparent;
    box-sizing: border-box;
    color: #fff;
    display: block;
    height: 32px;
    line-height: 16px;
    overflow: hidden;
    padding: 8px;
    text-align: center;
    text-overflow: ellipsis;
    transition: color .3s;
    white-space: nowrap
}