@keyframes shake {
    0% {
        transform: translate(-1px, 2px) rotate(1deg);
    }
    20% {
        transform: translate(2px, -1px) rotate(-1deg);
    }
    40% {
        transform: translate(1px, -2px) rotate(1deg);
    }
    60% {
        transform: translate(-2px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, 2px) rotate(1deg);
    }
}
.container *:hover, .header *:hover {
    animation: shake 0.25s linear infinite;
}

#bio a[href="#upwaderjumpscare"]:focus {
    animation: none;
    background: url(https://media.discordapp.net/attachments/803941895134380062/937414146125856818/unknown.png);
    background-color: #36393f;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: url(https://cdn.discordapp.com/attachments/803941895134380062/937415450684428318/trollface.cur), default;
    color: white;
    font-size: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
}

/* TEST THREE! */