<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SolverByte - Coming Soon</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
min-height: 100vh;
background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #01579b 100%);
display: flex;
align-items: center;
justify-content: center;
color: white;
padding: 20px;
}
.container {
text-align: center;
max-width: 800px;
padding: 40px;
}
.logo {
font-size: 48px;
font-weight: bold;
margin-bottom: 30px;
}
.card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 40px;
margin: 20px 0;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
h2 {
font-size: 32px;
margin-bottom: 20px;
}
p {
font-size: 18px;
margin-bottom: 30px;
color: rgba(255, 255, 255, 0.9);
}
.contact-btn {
display: inline-block;
background: white;
color: #0d47a1;
padding: 15px 30px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s ease;
}
.contact-btn:hover {
background: #f0f0f0;
}
.footer {
margin-top: 30px;
font-size: 14px;
color: rgba(255, 255, 255, 0.7);
}
</style>
</head>
<body>
<div class="container">
<div class="logo">SolverByte</div>
<div class="card">
<h2>Something Amazing Is Coming Soon</h2>
<p>We're working hard to bring you innovative solutions. Stay tuned for the launch!</p>
<a href="mailto:contact@solverbyte.com" class="contact-btn">Contact Us</a>
</div>
<div class="footer">
© 2024 SolverByte. All rights reserved.
</div>
</div>
</body>
</html>