<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Road Pictures</title>


<style>


body{

margin:0;

background:black;

color:white;

font-family:Arial, sans-serif;

text-align:center;

}


.hero{

height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}


h1{

font-size:70px;

letter-spacing:6px;

margin:0;

}


p{

font-size:20px;

opacity:0.8;

}


</style>

</head>


<body>


<div class="hero">

<h1>ROAD PICTURES</h1>

<p>Independent Film Production</p>

</div>


</body>

</html>