<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>I AM AWESOME!!!!</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300,800,700&display=swap');
* {
margin: 0;
padding: 0;
outline: none;
-webkit-user-select: none;
user-select: none;
}
body {
padding: 25px;
color: #000000;
background: #ffffff;
font-family: "Inter", sans-serif;
font-weight: 700;
}
h2 {
font-size: 32px;
font-weight: 800;
text-align: center;
}
a {
font-weight: bold;
color: #0096FF;
}
p {
margin-top: 20px;
font-weight: 300;
}
@media (prefers-color-scheme: dark) {
* {
color: #ffffff;
}
body {
background-color: #000000;
}
}
</style>
</head>
<body>
<h2>Title</h2>
<p>I am premium. Use <a href="https://google.com">the regular old google link</a> to sign up if you do not have an account already.</p>
<p>Check out a different link <a href="https://google.com">google again!!!</a>
</p>
<p> help support the developer ❤️</p>
</body>
</html>