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
95
96
97
98
99
100
101
102
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibes</title>
<style>
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #121212;
color: #ffffff;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
}
.container {
max-width: 800px;
padding: 2rem;
}
h1 {
font-size: 4rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #ff00aa, #00aaff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 2rem;
color: #aaaaaa;
}
.experiments {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}
.experiment-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
padding: 1.5rem;
transition: all 0.3s ease;
text-decoration: none;
color: white;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.experiment-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
background: rgba(255, 255, 255, 0.1);
border-color: rgba(255, 255, 255, 0.2);
}
.experiment-title {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.experiment-description {
color: #aaaaaa;
font-size: 1rem;
}
footer {
margin-top: 4rem;
color: #666666;
font-size: 0.9rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Vibes</h1>
<p>A collection of creative web experiments and visual experiences.</p>
<div class="experiments">
<a href="isometric/index.html" class="experiment-card">
<div class="experiment-title">Isometric Triangles</div>
<div class="experiment-description">
Dynamic background with animated geometric shapes in an isometric perspective.
</div>
</a>
</div>
<footer>
© 2025 Vibes
</footer>
</div>
</body>
</html>
|