P
Category: Asthma |
Published: Apr 07, 2026
Hacked BY Mr.XycanKing
body{
margin:0;
padding:0;
font-family:'Share Tech Mono', monospace;
color:white;
background: repeating-linear-gradient(
to bottom,
#000 0px,
#000 20px,
#111 21px,
#000 22px
);
animation: moveLines 2s linear infinite;
display:flex;
justify-content:center;
align-items:center;
height:100vh;
text-align:center;
}
@keyframes moveLines{
from{background-position:0 0;}
to{background-position:0 40px;}
}
.container{
width:90%;
}
img{
width:220px;
margin-bottom:20px;
}
h1{
font-size:24px;
margin:4px;
letter-spacing:1px;
}
.marquee{
color:red;
width:100%;
margin:auto;
}
audio {
margin-top: 25px;
}
document.body.addEventListener("click", function(){
var x = document.getElementById("sec");
x.play();
});