/**
 * @name BlurOnUnfocus
 * @author sofabeddd#2066
 * @version 1.0
 * @description Just blurs Discord when you don't have the app focused.
 * @authorId 560247410522324993
*/

body:hover {
	filter: none;
	transition: all 0.5s;
}

body:not(:hover) {
	filter: blur(10px);
	transition: all 10s;
}