44 lines
872 B
PHP
44 lines
872 B
PHP
<?php include "../html-head.php"; ?>
|
|
|
|
<link rel="stylesheet" href="https://static.eliasfink.de/fonts/montserrat/montserrat.css">
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
background-color: var(--blue-1);
|
|
}
|
|
|
|
h1 {
|
|
top: 50%;
|
|
left: 50%;
|
|
margin: 0;
|
|
color: #FFFFFF;
|
|
font-size: 48px;
|
|
font-weight: 300;
|
|
position: absolute;
|
|
transform: translate(-50%, -50%);
|
|
font-family: "Montserrat", sans-serif;
|
|
}
|
|
|
|
span {
|
|
color: var(--blue-3);
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
h1 {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<title>Static – eliasfink.de</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1><span>static</span>.eliasfink.de</h1>
|
|
|
|
</body>
|
|
|
|
</html>
|