-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (63 loc) · 1.87 KB
/
index.html
File metadata and controls
71 lines (63 loc) · 1.87 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deathwings — Death To Fatigue</title>
<meta name="description" content="Deathwings — Death To Fatigue. Something is coming." />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
death: {
black: '#000000',
white: '#f5f5f5',
soft: '#b8b8b8',
muted: '#aaaaaa',
faint: '#2a2a2a'
}
},
fontFamily: {
sans: ['Arial', 'Helvetica Neue', 'Helvetica', 'sans-serif']
}
}
}
}
</script>
<style>
body {
background: #000;
}
.tracking-hero {
letter-spacing: 0.34em;
}
.tracking-sub {
letter-spacing: 0.18em;
}
.tracking-email {
letter-spacing: 0.14em;
}
</style>
</head>
<body class="min-h-screen bg-death-black text-death-white antialiased">
<main class="flex min-h-screen items-center justify-center px-6">
<section class="w-full max-w-xl text-center">
<!-- Logo -->
<img
src="https://res.cloudinary.com/dragon-fire-design-studio/image/upload/f_auto,q_90/v1778792455/Deathwings/session-logo_r2apbi.png"
alt="Session logo"
class="mx-auto mb-10 w-[22rem] sm:w-[30rem] md:w-[38rem] lg:w-[46rem]"
/>
<!-- Email -->
<a
href="mailto:hello@wearedeathwings.com"
class="tracking-email mt-16 inline-block border-b border-death-faint pb-1 text-[0.9rem] uppercase text-[#505050] transition duration-300 hover:text-death-soft hover:border-[#3a3a3a]"
>
hello@wearedeathwings.com
</a>
</section>
</main>
</body>
</html>