<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coming Soon</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f0f0f0;
}
.card {
background-color: white;
width: 60vw;
height: 70vh;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
position: relative;
}
.container {
text-align: center;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
.icon {
font-size: 100px;
margin-bottom: 30px;
color: #333;
}
.message {
font-size: clamp(24px, 3vw, 42px);
font-weight: bold;
color: #333;
margin-bottom: 40px;
}
.footer {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
color: #666;
font-size: 18px;
}
.footer a {
color: #666;
text-decoration: none;
transition: color 0.3s ease;
font-size: 18px;
font-weight: bold;
}
.footer a:hover {
color: #333;
}
.icon svg {
width: 80px;
height: 80px;
}
.icon path {
fill: #333;
}
</style>
</head>
<body>
<div class="card">
<div class="container">
<div class="icon">
📢
</div>
<div class="message">
omgomgomg5j4yrr4mjdv3h5c5xfvxtqqs2in7smi65mjps7wvkmqmtqd-onion.org <i>is coming soon</i>
</div>
</div>
<div class="footer">
This domain is managed at <a href="https://nicenic.net/?f=dmnew" target="_blank">NiceNIC.NET</a>
</div>
</div>
</body>
</html>