Untitled
2 hours ago in Plain Text
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>For Hamza 💗</title>
<style>
body {
margin: 0;
font-family: "Poppins", sans-serif;
background: linear-gradient(135deg, #ffd6e8, #ffeefc);
color: #444;
text-align: center;
padding: 30px;
}
.card {
background: white;
padding: 25px;
border-radius: 20px;
max-width: 450px;
margin: auto;
box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
}
h1 {
font-size: 28px;
color: #ff4f8b;
margin-bottom: 10px;
}
p {
font-size: 18px;
line-height: 1.6;
}
.heart {
font-size: 35px;
margin-top: 20px;
animation: beat 1.2s infinite;
}
@keyframes beat {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.2); }
}
</style>
</head>
<body>
<div class="card">
<h1>Happy 1 Year Anniversary Hamza 💗</h1>
<p>
I don’t even know how to explain it properly…
but these past 12 months have been the **sweetest, softest, happiest** part of my life.
Thank you for being mine, for understanding me, and for staying with me no matter what.
</p>
<p>
This is just a tiny surprise…
but my heart is full of you, always.
</p>
<div class="heart">💗</div>
</div>
</body>
</html>