<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
background: #000;
color: #fff;
}
body {
display: flex;
justify-content: center;
align-items: center;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
font-weight: 400;
letter-spacing: 0.02em;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<a href="mailto:satietymgmt@gmail.com">satietymgmt@gmail.com</a>
</body>
</html>