File: //home/eblama1/dmslib.com/index.html
<html>
<head>
<meta http-equiv="refresh" content="1;url=https://t.me/+TWoVzuM50PAwY2Fk"/>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #000;
animation: flashBackground 0.5s linear infinite alternate;
overflow: hidden;
position: relative;
}
@keyframes flashBackground {
0% { background-color: #000; } /* Black */
50% { background-color: #FFF; } /* White */
100% { background-color: #000; } /* Black */
}
/* Style for the background text */
.background-text {
position: absolute;
font-size: 10em;
color: rgba(255, 255, 255, 0.1); /* Light white shadow effect */
font-family: 'Courier New', monospace;
font-weight: bold;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
text-shadow: 0 0 40px rgba(255, 255, 255, 0.8); /* Strong glowing effect */
letter-spacing: -10px; /* Makes the text tighter */
}
/* Centered redirect text */
.container {
color: white;
font-size: 2em;
font-family: 'Courier New', monospace;
z-index: 2;
}
</style>
</head>
<body>
<!-- "Unlimited Team here" text in background -->
<div class="background-text">Unlimited Team here </div>
<!-- Redirect message -->
<div class="container">...</div>
</body>
</html>