<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Delta Diane</title>
<style>
body {
margin: 0;
padding: 0;
background-image: url('logo.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-family: Arial, sans-serif;
}
h1 {
background: rgba(0, 0, 0, 0.5); /* Optional: adds contrast */
padding: 20px 40px;
border-radius: 10px;
}
</style>
</head>
<body>
<h1>Delta Diane</h1>
</body>
</html>