File size: 2,520 Bytes
715083e 5e94d0b 715083e 06f1ad1 715083e 87b6251 715083e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NewEden</title>
<style>
html, body {
background: black;
color: #c9d1d9 !important;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
}
body {
background-color: #0a0a0a;
color: #e0e0e0;
font-family: 'Arial', sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
border-left: 3px solid #c79e2a;
border-right: 3px solid #c79e2a;
}
header {
text-align: center;
padding: 20px 0;
border-bottom: 2px solid #c79e2a;
margin-bottom: 30px;
}
h1 {
color: #c79e2a;
font-size: 2.5em;
text-shadow: 2px 2px 4px #000;
letter-spacing: 2px;
}
.boba-image {
display: block;
margin: 0 auto;
max-width: 300px;
border: 3px solid #c79e2a;
border-radius: 5px;
box-shadow: 0 0 15px rgba(199, 158, 42, 0.5);
}
.quote {
font-style: italic;
font-size: 1.5em;
text-align: center;
margin: 40px 0;
padding: 20px;
background-color: #1a1a1a;
border-left: 5px solid #c79e2a;
border-right: 5px solid #c79e2a;
color: #c79e2a;
}
.content {
line-height: 1.6;
padding: 0 20px;
}
footer {
margin-top: 40px;
text-align: center;
padding: 20px;
border-top: 2px solid #c79e2a;
font-size: 0.9em;
color: #777;
}
a {
color: #c79e2a;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>NewEden</h1>
</header>
<img src="https://cdn-uploads.huggingface.co/production/uploads/66c26b6fb01b19d8c3c2467b/2bJs5QRgXLa553VCpwve_.png" alt="Boba Fett" class="boba-image">
<div class="quote">
"No hard feelings. It's just business."
</div>
<footer>
<p>This is the way. | © Delta-Vector </p>
</footer>
</body>
</html> |