div.task-panel:hover {
    background-color: #343434;
}

div.task-panel:hover .panel-heading {
    background-color: #424242;
}

div.task-panel-solved:hover {
    background-color: #343434;
}

div.task-panel-solved:hover .panel-heading {
    background-color: #54ff5e;
}

li.category:hover {
    background-color: #424242;
}

a.not-underlined {
    text-decoration: none;
}

p.blurry-text {
    text-shadow: 0 0 32px white;
    color: transparent;
}

p.blurry-text:hover {
    text-shadow: none;
    color: inherit;
}

.typewriter span {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .40em solid transparent; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */

    animation:
        blink-caret .75s step-end infinite;
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}