i have this code:
CSS
body {
transition: background-color 600ms linear 1s;
background-color: #1fb1ff;
animation: clr-shift 5s infinite;
}
@keyframes clr-shift {
0% {background-color: #25b3ff}
20% {background-color: #1fc2ff}
40% {background-color: #1f99ff}
60% {background-color: #1f7bff}
80% {background-color: #4793ff}
80% {background-color: #1fb1ff}
}
HTML:
<body>
<a href="https://www.github.com/mahakaal47">GitHub</a>
<p> Lorem ipsum blah blah some content </p>
</body>
so i have this code where in paragraph tag i have some content & i have many content like this in my whole HTML file & i have many links i want that if i hover on any link except the link everything gets blurred even the background all the text content all the divs & everything which is there in body except the item which is hovered
i have checked this question and many questions but i can not solve my problem
Thanks for answering in advance