<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Unsubscribe Confirmation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
body {
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
background-color: #0898a0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
width: 600px;
margin: 0 auto;
text-align: center;
padding: 50px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.container h1 {
margin-bottom: 20px;
color: #3e3e3e;
font-size: 28px;
font-weight: 700;
}
.container p {
margin-bottom: 30px;
color: #707070;
font-size: 18px;
line-height: 1.5;
}
.button {
display: inline-block;
background-color: #0898a0;
border-radius: 5px;
color: #fff;
padding: 10px 20px;
font-size: 18px;
font-weight: 700;
text-decoration: none;
transition: all 0.5s ease-in-out;
}
.button:hover {
scale: 1.1;
}
</style>
</head>
<body>
<div class="container">
<h1>Unsubscribe Confirmation</h1>
<p>
You have been unsubscribed from our mailing list. We're sorry to see you go!
</p>
<a href="#" class="button">Close</a>
</div>
</body>
</html>