<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Centered: The Venture Studio</title>
<style>
body {
margin: 0;
padding: 0;
background-color: #fff;
color: #000;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 3rem;
margin: 0;
}
p {
margin: 1rem 0;
max-width: 600px;
}
a {
color: #000;
text-decoration: none;
font-weight: bold;
border-bottom: 2px solid #000;
padding-bottom: 2px;
}
a:hover {
color: #f00;
border-color: #f00;
}
.button {
display: inline-block;
margin-top: 2rem;
padding: 1rem 2rem;
background-color: #000;
color: #fff;
text-transform: uppercase;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #f00;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.75rem;
}
</style>
</head>
<body>
<h1>Centered</h1>
<p>Welcome to Centered: a no-BS venture studio creating businesses that matter. We don't just dream it; we build it, scale it, and center it in the future.</p>
<p>If you're here, it's because you mean business. And so do we.</p>
<a href="#">Learn More</a>
<div class="button">Let's Build Something</div>
<footer>
© 2025 Centered. Seriously good ventures.
</footer>
</body>
</html>