<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cranberry Street Ventures</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background-color: #6b0000;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 20px;
}
.container {
text-align: center;
}
h1 {
color: white;
font-size: 3.5rem;
font-weight: 400;
letter-spacing: 4px;
margin-bottom: 0.5rem;
font-family: 'Didot', 'Bodoni MT', Georgia, 'Times New Roman', serif;
text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.location {
color: rgba(255, 255, 255, 0.85);
font-size: 1rem;
font-weight: 300;
letter-spacing: 4px;
margin-bottom: 3rem;
font-family: 'Didot', 'Bodoni MT', Georgia, 'Times New Roman', serif;
text-transform: uppercase;
}
.email-link {
display: inline-block;
color: white;
text-decoration: none;
font-size: 1.1rem;
padding: 18px 50px;
border: 1px solid rgba(255, 255, 255, 0.6);
border-radius: 2px;
transition: all 0.4s ease;
letter-spacing: 1px;
font-weight: 300;
}
.email-link:hover {
background-color: white;
color: #6b0000;
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
border-color: white;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.email-link {
font-size: 1rem;
padding: 12px 30px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Cranberry Street Ventures</h1>
<p class="location">Brooklyn, New York</p>
<a href="mailto:jason@cranberrystreetventures.com" class="email-link">Get in Touch</a>
</div>
</body>
</html>