<!DOCTYPE html>
<html>
<head>
<title>Domain For Sale</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(to right, #1e90ff, #ff6347);
color: #fff;
}
.message {
text-align: center;
font-size: 2rem;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
border-radius: 10px;
background: rgba(0, 0, 0, 0.4);
}
</style>
</head>
<body>
<div class="message">
<h1>This Domain is For Sale</h1>
<p>Contact us for more information!</p>
</div>
</body>
</html>