PROCESSING
APPEAL REJECTED
TRY TOMORROW, MAYBE
.line-tear {
display: inline-block;
animation: lineTear 0.5s ease-out forwards;
}
@keyframes lineTear {
0% { transform: translateY(0); opacity: 1; }
100% { transform: translateY(20px); opacity: 0; }
}
.cursor-liquefaction {
animation: cursorLiquefy 0.5s ease-out forwards;
}
@keyframes cursorLiquefy {
0% { transform: translateY(0); opacity: 1; }
100% { transform: translateY(20px); opacity: 0; }
}