37 lines
1 KiB
HTML
37 lines
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>
|