<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sephra Films Inc</title>
<style>
:root {
--bg-color: #0a0a0a;
--text-color: #ffffff;
--muted-color: #777777;
--border-color: #1c1c1c;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.8;
padding: 2rem;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
max-width: 680px;
width: 100%;
margin: 0 auto;
text-align: center;
}
/* Header & Logo Layout */
header {
margin-bottom: 3.5rem;
}
.logo-container {
margin-bottom: 2rem;
}
.logo-container img {
max-width: 240px; /* Adjust this width depending on your logo's shape */
height: auto;
display: inline-block;
}
header h1 {
font-size: 1.6rem;
font-weight: 300;
letter-spacing: 5px;
text-transform: uppercase;
color: #ffffff;
}
/* Statement Content */
.content {
margin: 0 auto;
}
.about-text {
font-size: 1.25rem;
font-weight: 300;
letter-spacing: 0.5px;
color: #f0f0f0;
margin-bottom: 3rem;
}
.policy-text {
font-size: 0.95rem;
color: var(--muted-color);
border-top: 1px solid var(--border-color);
padding-top: 3rem;
font-style: italic;
max-width: 580px;
margin: 0 auto;
}
footer {
font-size: 0.7rem;
color: #333333;
margin-top: 6rem;
letter-spacing: 2px;
text-transform: uppercase;
}
</style>
</head>
<body>
<div class="container">
<header>
<!-- Updated to target your logo.jpg file -->
<div class="logo-container">
<img src="logo.jpg" alt="Sephra Films Inc Logo">
</div>
<h1>Sephra Films Inc</h1>
</header>
<main class="content">
<p class="about-text">
Welcome to Sephra Films Inc, a privately owned arthouse film production company based in Montreal, devoted to telling powerful human stories about those too often forgotten by the world.
</p>
<p class="policy-text">
While we appreciate your interest in Sephra Films Inc, we are unable to respond to unsolicited emails, submissions, or project inquiries at this time.
</p>
</main>
<footer>
<p>© 2026 Sephra Films Inc. All rights reserved.</p>
</footer>
</div>
</body>
</html>