<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yvan Brunetti – Mi Luv Yuh Mi Man</title>
<link rel="icon" href="/favicon.ico">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
color: white;
text-align: center;
background: url('cover.jpg') no-repeat center center/cover;
}
.overlay {
background: rgba(0,0,0,0.65);
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
max-width: 700px;
padding: 20px;
}
h1 {
font-size: 42px;
margin-bottom: 5px;
}
h2 {
font-weight: normal;
margin-bottom: 20px;
}
.button {
display: inline-block;
margin: 10px;
padding: 12px 20px;
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: bold;
}
.spotify { background: #1DB954; }
.youtube { background: #FF0000; }
</style>
</head>
<body>
<div class="overlay">
<div class="container">
<h1>Yvan Brunetti</h1>
<h2>Mi Luv Yuh Mi Man 🌴🎶</h2>
<a href="#" class="button spotify">Luister op Spotify</a>
<a href="#" class="button youtube">Bekijk op YouTube</a>
</div>
</div>
</body>
</html>