<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome to HV</title>
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<style>
body {
background-color: #ffffff;
margin: 0;
padding: 60px 20px;
display: flex;
justify-content: center;
align-items: center;
height: 60vh;
}
h1 {
font-family: 'Anton', sans-serif;
font-size: 96px;
letter-spacing: 2px;
color: #e83442;
text-transform: uppercase;
text-align: center;
}
@media (max-width: 768px) {
h1 {
font-size: 56px;
}
}
</style>
</head>
<body>
<h1>Welcome to HV</h1>
</body>
</html>