34 lines
869 B
HTML
34 lines
869 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Dynalab</title>
|
|
<meta name="description" content="Dynalab">
|
|
<meta name="theme-color" content="#2f8fa8">
|
|
<style>
|
|
html, body { height: 100%; margin: 0; }
|
|
body {
|
|
background: #2f8fa8 url("landing.png") center / cover no-repeat;
|
|
image-rendering: pixelated;
|
|
display: grid;
|
|
place-items: center;
|
|
font-family: ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;
|
|
}
|
|
h1 {
|
|
margin: 0 0 22vh;
|
|
padding: 0 16px;
|
|
color: #fff;
|
|
font-size: clamp(2.5rem, 9vw, 7rem);
|
|
font-weight: 700;
|
|
letter-spacing: .12em;
|
|
text-transform: uppercase;
|
|
text-shadow: 0 4px 0 rgba(16, 48, 64, .55), 0 0 40px rgba(16, 48, 64, .35);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Dynalab</h1>
|
|
</body>
|
|
</html>
|