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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vibes</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=VT323&family=Fredoka:wght@400;600&display=swap"
rel="stylesheet">
<style>
body {
font-family: 'Fredoka', sans-serif;
background-color: #ffd6e0;
color: #5a3d5c;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
background-image:
linear-gradient(45deg, #ffd6e0 25%, transparent 25%),
linear-gradient(-45deg, #ffd6e0 25%, transparent 25%),
linear-gradient(45deg, transparent 75%, #ffd6e0 75%),
linear-gradient(-45deg, transparent 75%, #ffd6e0 75%);
background-size: 20px 20px;
background-color: #ffecf1;
}
.container {
max-width: 800px;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.85);
border-radius: 20px;
box-shadow: 0 10px 25px rgba(90, 61, 92, 0.2);
border: 5px solid #c1a5e8;
image-rendering: pixelated;
}
h1 {
font-family: 'VT323', monospace;
font-size: 5rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #ff6ec4, #7873f5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 3px 3px 0px rgba(255, 110, 196, 0.3);
letter-spacing: 2px;
}
p {
font-size: 1.2rem;
line-height: 1.6;
margin-bottom: 2rem;
color: #7c5295;
}
.experiments {
display: flex;
flex-direction: column;
gap: 1rem;
margin-top: 2rem;
}
.experiment-card {
background: #c1a5e8;
border-radius: 15px;
padding: 1.5rem;
transition: all 0.3s ease;
text-decoration: none;
color: #5a3d5c;
border: 3px dashed #ff6ec4;
box-shadow: 5px 5px 0px #7873f5;
transform: rotate(-1deg);
}
.experiment-card:hover {
transform: translateY(-5px) rotate(1deg);
box-shadow: 8px 8px 0px #7873f5;
background: #d4c1f0;
}
.experiment-title {
font-family: 'VT323', monospace;
font-size: 2rem;
margin-bottom: 0.5rem;
color: #5a3d5c;
}
.experiment-description {
color: #5a3d5c;
font-size: 1rem;
}
footer {
margin-top: 4rem;
color: #7c5295;
font-size: 0.9rem;
font-family: 'VT323', monospace;
letter-spacing: 1px;
}
</style>
</head>
<body>
<div class="container">
<h1>Vibes</h1>
<p>A collection of cute & 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>
|