homepage/index.html
2024-11-20 01:42:37 +01:00

56 lines
No EOL
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://code.cdn.mozilla.net/fonts/fira.css">
<title>thebread.dev</title>
<style>
html {
background-image: url('https://cdn.thebread.dev/photos/.IMG_2206.JPG.webp');
font-family: "Fira sans", sans-serif;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
height: 100%;
}
body {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: unset;
flex-direction: column;
text-align: center;
}
a {
color: unset;
}
.glass-text {
font-size: 5rem;
font-weight: bold;
position: relative;
color: rgba(255, 255, 255, 0.8);;
}
.glass-text::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-background-clip: text;
background-clip: text;
z-index: -1;
}
</style>
</head>
<body>
<div id="content" class="glass-text">
<h2>soon™</h1>
<h4>have a look at my <a href="cdn.thebread.dev">cdn</a></h4>
<h4>or visit my friends <a href="https://emma.pizza">Emma</a> and <a href="https://henhaa.art">Henrik</a></h4>
</div>
</body>
</html>