html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="fjut">
bańka kutas
</div>
</body>
<style>
body {
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
background: linear-gradient(-45deg, #32bd07, #3c9ae7, #1046aa, #23d5ab);
background-size: 400% 400%;
animation: gradient 5s ease infinite;
color: azure;
height: 100vh;
}
@keyframes gradient {
0% {
filter: blur(50px);
background-position: 0% 50%;
}
50% {
filter: blur(0px);
background-position: 100% 50%;
}
100% {
filter: blur(50px);
background-position: 0% 50%;
}
}
.fjut {
font-size: 32px;
font-weight: bold;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
</style>
</html>
This is a public paste that anyone can view.
Share