<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Situs Akan Segera Tayang</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #121212;
color: #f5f5f5;
font-family: 'Arial', sans-serif;
text-align: center;
}
.container {
border: 2px solid #f5f5f5;
padding: 30px;
border-radius: 10px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
h1 {
font-size: 2.5rem;
margin-bottom: 10px;
}
p {
font-size: 1.2rem;
margin-bottom: 20px;
}
.btn {
display: inline-block;
background-color: #ff5722;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.btn:hover {
background-color: #e64a19;
}
</style>
</head>
<body>
<div class="container">
<h1>Situs Akan Segera Tayang</h1>
<p>Kami sedang mempersiapkan sesuatu yang menarik untuk Anda! Stay tuned!</p>
<a href="#" class="btn">Kembali Lagi Nanti</a>
</div>
</body>
</html>