kumpulanresepmasakan.info Ads.txt file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Website Under Construction</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: linear-gradient(to bottom, #020024, #090979, #00d4ff);
color: #fff;
text-align: center;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
overflow: hidden;
position: relative;
}
.container {
z-index: 1;
max-width: 800px;
padding: 20px;
}
.container h1 {
font-size: 36px;
margin: 0 0 10px;
}
.container p {
font-size: 18px;
margin: 0 0 20px;
}
.astronaut {
width: 150px;
position: absolute;
bottom: 10%;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-15px);
}
}
.stars {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://www.transparenttextures.com/patterns/stardust.png');
z-index: 0;
opacity: 0.4;
}
</style>
</head>
<body>
<div class="stars"></div>
<div class="container">
<h1>Awesome Site in The Making</h1>
<p>An amazing site is coming to this web address. Check back soon!</p>
<img src="https://i.ibb.co/XWRV7T8/Remove-bg-ai-1735972700735.webp" alt="Astronaut Icon" class="astronaut">
</div>
</body>
</html>