<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HACKED BY NESAS</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');
body {
background-color: black;
color: red;
text-align: center;
font-family: 'Orbitron', sans-serif;
animation: glitch 1s infinite;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
@keyframes glitch {
0% { text-shadow: 2px 2px 10px red; }
50% { text-shadow: -2px -2px 10px red; }
100% { text-shadow: 2px 2px 10px red; }
}
h1 {
font-size: 40px;
text-shadow: 2px 2px 10px red;
font-weight: bold;
animation: flicker 1.5s infinite alternate;
}
@keyframes flicker {
0% { opacity: 1; }
50% { opacity: 0.8; }
100% { opacity: 1; }
}
img {
width: 250px;
height: auto;
margin: 10px;
border: 3px solid red;
box-shadow: 0 0 15px red;
animation: shake 0.5s infinite alternate, glow 1.5s infinite alternate;
}
@keyframes shake {
0% { transform: translateX(-2px); }
100% { transform: translateX(2px); }
}
@keyframes glow {
0% { filter: brightness(1); }
100% { filter: brightness(1.3); }
}
p {
font-size: 15px;
font-style: italic;
text-shadow: 1px 1px 8px red;
animation: fadeIn 2s ease-in-out infinite alternate;
}
@keyframes fadeIn {
0% { opacity: 0.7; }
100% { opacity: 1; }
}
.scanline {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(
to bottom,
rgba(0, 0, 0, 0.2) 0px,
rgba(0, 0, 0, 0.2) 1px,
transparent 2px,
transparent 4px
);
z-index: 2;
pointer-events: none;
}
.neon-border {
border: 3px solid red;
box-shadow: 0px 0px 10px red;
}
.video-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
filter: blur(3px);
mask-image: linear-gradient(to top, transparent 5%, black 20%);
-webkit-mask-image: linear-gradient(to top, transparent 5%, black 20%);
}
.video-background video {
width: 100%;
height: 100%;
object-fit: cover;
}
</style>
</head>
<body>
<div class="video-background">
<video autoplay loop muted>
<source src="https://upload.wikimedia.org/wikipedia/commons/transcoded/5/59/WGN-TV_%27Max_Headroom%27_Incident%22_%281987%29.webm/WGN-TV_%27Max_Headroom%27_Incident%22_%281987%29.webm.480p.vp9.webm#t=10" type="video/webm">
</video>
</div>
<div class="scanline"></div>
<h1 class="neon-border">HACKED BY NESAS</h1>
<h2>gretz:deccals,morgan</h2>
<img class="neon-border" src="https://asalvision.com/wp-content/uploads/2022/08/Mr-Robot-Elliot-Alderson-Black-Hooded-Jacket.jpg" alt="Elliot Alderson">
<p class="neon-border">We are everywhere. We are watching.</p>
</body>
</html>