#text {
    height: 0;
};

#text .text-animation {
    overflow: hidden;
    transition: 'all .5s ease-in-out';
    height: 0;
}

.text-animation:target {
    height: 2rem;
}