<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PeNn’z WoRLd</title>
<style>
body {
background-color: black;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.scrolling-text {
position: absolute;
white-space: nowrap;
font-size: 3rem;
font-weight: bold;
color: lime;
font-family: 'Arial', sans-serif;
animation: scroll 5s linear infinite, blink 0.5s infinite alternate;
}
@keyframes scroll {
from { transform: translateX(-100%); }
to { transform: translateX(100vw); }
}
@keyframes blink {
0% { opacity: 1; }
100% { opacity: 0; }
}
</style>
</head>
<body>
<div class="scrolling-text">PeNn’z WoRLd</div>
</body>
</html>

