<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WALLITUDE — Coming Soon</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Inter Font -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #0b0b0b;
color: #ffffff;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
}
h1 {
font-family: serif; /* Canela-style placeholder */
font-size: 38px;
letter-spacing: 6px;
margin-bottom: 14px;
}
.tagline {
font-family: 'Inter', sans-serif;
font-size: 14px;
font-weight: 400;
letter-spacing: 0.4px;
color: #cfcfcf;
margin-bottom: 22px;
}
.status {
font-family: 'Inter', sans-serif;
font-size: 12px;
letter-spacing: 1.5px;
text-transform: uppercase;
color: #9a9a9a;
}
</style>
</head>
<body>
<div class="container">
<h1>WALLITUDE</h1>
<div class="tagline">Because some memories deserve permanence</div>
<div class="status">Coming Soon</div>
</div>
</body>
</html>