This repository has been archived on 2023-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
legacy-website/beta/index.html
2023-05-10 16:40:36 +02:00

37 lines
No EOL
1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Beta Stash</title>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
/* Center the content vertically and horizontally */
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #121316;
color: #ffffff;
}
p {
text-align: center;
font-family: 'Manrope', sans-serif;
font-weight: 800;
font-size: 2em;
}
.style-1 {
color: #0091FB;
}
.style-2 {
color: #00B2FA;
}
.style-3 {
color: #00C4FB;
}
</style>
</head>
<body>
<p>There's nothing here yet... <span class="style-1">or </span><span class="style-2">is </span><span class="style-3">there</span>?</p>
</body>
</html>