<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resonate Management</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #ffffff;
font-family: Arial, sans-serif;
color: #000000;
}
.container {
text-align: center;
}
.typing {
font-size: 2em;
font-weight: bold;
border-right: 2px solid;
white-space: nowrap;
overflow: hidden;
width: 0;
animation: typing 3s steps(20, end) forwards, blink 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink {
from, to { border-color: transparent; }
50% { border-color: black; }
}
.contact {
margin-top: 20px;
font-size: 1.2em;
color: #0000EE;
cursor: pointer;
}
.contact:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="typing">RESONATE MANAGEMENT</div>
<div class="contact">
<a href="mailto:daniel@resonatemgmt.com”>CONTACT</a>
</div>
</div>
</body>
</html>