<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Baniga Team Was Here XD</title>
<style>
body {
background-color: black;
color: lime;
font-family: 'Courier New', monospace;
text-align: center;
overflow: hidden;
}
.glitch {
font-size: 50px;
font-weight: bold;
position: relative;
animation: glitch 1s infinite;
}
@keyframes glitch {
0% { text-shadow: 2px 2px red; }
25% { text-shadow: -2px -2px cyan; }
50% { text-shadow: 2px -2px lime; }
75% { text-shadow: -2px 2px yellow; }
100% { text-shadow: 2px 2px red; }
}
</style>
</head>
<body>
<h1 class="glitch">Baniga Team Was Here XD</h1>
</body>
</html>