Skip to content

Commit e58bf90

Browse files
Update summer-slams-dsa.html
1 parent 2cb0c47 commit e58bf90

1 file changed

Lines changed: 72 additions & 47 deletions

File tree

summer-slams-dsa.html

Lines changed: 72 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -19,60 +19,66 @@
1919
height: 100%;
2020
font-family: 'Poppins', sans-serif;
2121
background: linear-gradient(135deg, #0f172a, #1e293b);
22-
color: #f9fafb;
22+
overflow: hidden;
23+
position: relative;
2324
display: flex;
24-
flex-direction: column;
2525
justify-content: center;
2626
align-items: center;
27-
overflow: hidden;
27+
color: #f9fafb;
28+
}
29+
30+
/* Glass Container */
31+
.glass-wrapper {
32+
background: rgba(255, 255, 255, 0.06);
33+
border: 1px solid rgba(255, 255, 255, 0.1);
34+
border-radius: 20px;
35+
padding: 40px 30px;
36+
max-width: 90%;
37+
width: 420px;
2838
text-align: center;
29-
transition: background 0.5s ease;
39+
backdrop-filter: blur(12px);
40+
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
41+
animation: zoomIn 1.5s ease-out;
3042
}
3143

32-
/* Logo */
3344
.logo {
34-
width: 160px;
35-
height: 160px;
36-
object-fit: cover;
45+
width: 120px;
46+
height: 120px;
3747
border-radius: 50%;
38-
box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
39-
margin-bottom: 30px;
40-
animation: zoomIn 1.8s ease-out;
48+
object-fit: cover;
49+
margin-bottom: 25px;
50+
box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
4151
}
4252

43-
/* Headline */
4453
h1 {
45-
font-size: 3.2rem;
46-
font-weight: 800;
54+
font-size: 2.5rem;
4755
color: #38bdf8;
48-
text-shadow: 0 0 12px rgba(56, 189, 248, 0.6);
49-
margin-bottom: 12px;
50-
animation: fadeIn 2s ease-out;
56+
font-weight: 800;
57+
margin-bottom: 10px;
58+
text-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
5159
}
5260

53-
/* Subtitle */
5461
p {
55-
font-size: 1.2rem;
56-
color: #cbd5e1;
57-
margin-bottom: 60px;
58-
animation: fadeIn 2.2s ease-out;
62+
font-size: 1rem;
63+
color: #e2e8f0;
64+
margin-bottom: 30px;
5965
}
6066

6167
footer {
62-
position: absolute;
63-
bottom: 20px;
64-
font-size: 0.9rem;
68+
font-size: 0.85rem;
6569
color: #94a3b8;
70+
margin-top: 20px;
6671
}
6772

6873
@keyframes zoomIn {
69-
0% { transform: scale(0.6); opacity: 0; }
70-
100% { transform: scale(1); opacity: 1; }
71-
}
72-
73-
@keyframes fadeIn {
74-
0% { opacity: 0; transform: translateY(20px); }
75-
100% { opacity: 1; transform: translateY(0); }
74+
from {
75+
transform: scale(0.6);
76+
opacity: 0;
77+
}
78+
to {
79+
transform: scale(1);
80+
opacity: 1;
81+
}
7682
}
7783

7884
/* Particles */
@@ -87,42 +93,61 @@
8793

8894
.particle {
8995
position: absolute;
90-
background: rgba(255, 255, 255, 0.1);
96+
background: rgba(255, 255, 255, 0.08);
9197
border-radius: 50%;
92-
animation: float 10s infinite ease-in-out;
93-
transition: transform 0.5s ease;
98+
animation: float 12s infinite ease-in-out;
9499
}
95100

96101
@keyframes float {
97-
0% { transform: translateY(0) scale(1); opacity: 0.3; }
98-
50% { transform: translateY(-50vh) scale(1.2); opacity: 0.7; }
99-
100% { transform: translateY(0) scale(1); opacity: 0.3; }
102+
0% { transform: translateY(0) scale(1); opacity: 0.2; }
103+
50% { transform: translateY(-60vh) scale(1.3); opacity: 0.6; }
104+
100% { transform: translateY(0) scale(1); opacity: 0.2; }
105+
}
106+
107+
@media screen and (max-width: 480px) {
108+
.glass-wrapper {
109+
padding: 30px 20px;
110+
width: 90%;
111+
}
112+
113+
h1 {
114+
font-size: 2rem;
115+
}
116+
117+
p {
118+
font-size: 0.95rem;
119+
}
120+
121+
.logo {
122+
width: 100px;
123+
height: 100px;
124+
}
100125
}
101126
</style>
102127
</head>
103128

104129
<body>
105130
<div class="particles" id="particles-container"></div>
106131

107-
<img src="Vibrant-Summer-Slams-DSA25-Logo.png" alt="Event Logo" class="logo">
108-
109-
<h1>Coming Soon</h1>
110-
<p>Stay tuned — Something exciting is on the way!</p>
111-
112-
<footer>&copy; 2025 Summer Slams DSA25. All rights reserved.</footer>
132+
<div class="glass-wrapper">
133+
<img src="Vibrant-Summer-Slams-DSA25-Logo.png" alt="Event Logo" class="logo">
134+
<h1>Coming Soon</h1>
135+
<p>Stay tuned — Something exciting is on the way!</p>
136+
<footer>&copy; 2025 Summer Slams DSA25. All rights reserved.</footer>
137+
</div>
113138

114139
<script>
115140
const particleContainer = document.getElementById("particles-container");
116141

117-
for (let i = 0; i < 50; i++) { // Increased particle count for a denser effect
142+
for (let i = 0; i < 60; i++) {
118143
const p = document.createElement("div");
119144
p.classList.add("particle");
120-
const size = Math.random() * 12 + 5;
145+
const size = Math.random() * 10 + 4;
121146
p.style.width = `${size}px`;
122147
p.style.height = `${size}px`;
123148
p.style.left = `${Math.random() * 100}%`;
124149
p.style.top = `${Math.random() * 100}%`;
125-
p.style.animationDuration = `${5 + Math.random() * 8}s`;
150+
p.style.animationDuration = `${6 + Math.random() * 6}s`;
126151
particleContainer.appendChild(p);
127152
}
128153
</script>

0 commit comments

Comments
 (0)