#card {
    position: absolute;
    width: 200px;
    top: 70%;
    left: 10%;
}

#card .name {
    cursor: pointer;
    text-decoration: none;
    color: black;
}

#card .tags {
    height: 20px;
}

#card .tags .tag {
    float: left;
    margin-left: 20px;
    font-size: .9em;
    color: #999;
    text-decoration: none;
    opacity: 0;
}

#card .tags .tag.visible {
    opacity: 1;
    transition: opacity 1.2s;
}
