-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (86 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
94 lines (86 loc) · 2.31 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Design Engineer</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
width: 100%;
height: 100%;
overflow: hidden;
background: #0a0a0a;
}
#canvas {
position: fixed;
inset: 0;
display: block;
}
.overlay {
position: fixed;
inset: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
pointer-events: none;
user-select: none;
z-index: 10;
}
.overlay h1 {
font-family: 'Courier New', monospace;
font-size: clamp(2rem, 5vw, 3.8rem);
font-weight: 300;
letter-spacing: 0.18em;
color: rgba(255, 255, 255, 0.92);
text-transform: uppercase;
text-align: center;
text-shadow:
0 0 20px rgba(0, 0, 0, 0.8),
0 2px 10px rgba(0, 0, 0, 0.6),
0 4px 20px rgba(0, 0, 0, 0.5);
}
.overlay .subtitle {
font-family: 'Courier New', monospace;
font-size: clamp(0.65rem, 1.4vw, 0.85rem);
font-weight: 400;
letter-spacing: 0.45em;
color: #39FF14;
text-transform: uppercase;
/* Glow + strong shadow for contrast */
text-shadow:
0 0 20px rgba(0, 0, 0, 0.9),
0 2px 10px rgba(0, 0, 0, 0.8),
0 0 14px rgba(57, 255, 20, 0.55);
}
.overlay nav {
margin-top: 28px;
display: flex;
gap: 28px;
pointer-events: all;
}
.overlay nav a {
font-family: 'Courier New', monospace;
font-size: 0.7rem;
letter-spacing: 0.3em;
color: rgba(200, 210, 195, 0.55);
text-decoration: none;
text-transform: uppercase;
transition: color 0.2s;
}
.overlay nav a:hover {
color: #39FF14;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<div class="overlay">
<h1>Trypanosoma Brucei</h1>
<p class="subtitle">Chong Lu Khei</p>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>