|
19 | 19 | height: 100%; |
20 | 20 | font-family: 'Poppins', sans-serif; |
21 | 21 | background: linear-gradient(135deg, #0f172a, #1e293b); |
22 | | - color: #f9fafb; |
| 22 | + overflow: hidden; |
| 23 | + position: relative; |
23 | 24 | display: flex; |
24 | | - flex-direction: column; |
25 | 25 | justify-content: center; |
26 | 26 | 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; |
28 | 38 | 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; |
30 | 42 | } |
31 | 43 |
|
32 | | - /* Logo */ |
33 | 44 | .logo { |
34 | | - width: 160px; |
35 | | - height: 160px; |
36 | | - object-fit: cover; |
| 45 | + width: 120px; |
| 46 | + height: 120px; |
37 | 47 | 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); |
41 | 51 | } |
42 | 52 |
|
43 | | - /* Headline */ |
44 | 53 | h1 { |
45 | | - font-size: 3.2rem; |
46 | | - font-weight: 800; |
| 54 | + font-size: 2.5rem; |
47 | 55 | 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); |
51 | 59 | } |
52 | 60 |
|
53 | | - /* Subtitle */ |
54 | 61 | 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; |
59 | 65 | } |
60 | 66 |
|
61 | 67 | footer { |
62 | | - position: absolute; |
63 | | - bottom: 20px; |
64 | | - font-size: 0.9rem; |
| 68 | + font-size: 0.85rem; |
65 | 69 | color: #94a3b8; |
| 70 | + margin-top: 20px; |
66 | 71 | } |
67 | 72 |
|
68 | 73 | @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 | + } |
76 | 82 | } |
77 | 83 |
|
78 | 84 | /* Particles */ |
|
87 | 93 |
|
88 | 94 | .particle { |
89 | 95 | position: absolute; |
90 | | - background: rgba(255, 255, 255, 0.1); |
| 96 | + background: rgba(255, 255, 255, 0.08); |
91 | 97 | 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; |
94 | 99 | } |
95 | 100 |
|
96 | 101 | @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 | + } |
100 | 125 | } |
101 | 126 | </style> |
102 | 127 | </head> |
103 | 128 |
|
104 | 129 | <body> |
105 | 130 | <div class="particles" id="particles-container"></div> |
106 | 131 |
|
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>© 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>© 2025 Summer Slams DSA25. All rights reserved.</footer> |
| 137 | + </div> |
113 | 138 |
|
114 | 139 | <script> |
115 | 140 | const particleContainer = document.getElementById("particles-container"); |
116 | 141 |
|
117 | | - for (let i = 0; i < 50; i++) { // Increased particle count for a denser effect |
| 142 | + for (let i = 0; i < 60; i++) { |
118 | 143 | const p = document.createElement("div"); |
119 | 144 | p.classList.add("particle"); |
120 | | - const size = Math.random() * 12 + 5; |
| 145 | + const size = Math.random() * 10 + 4; |
121 | 146 | p.style.width = `${size}px`; |
122 | 147 | p.style.height = `${size}px`; |
123 | 148 | p.style.left = `${Math.random() * 100}%`; |
124 | 149 | p.style.top = `${Math.random() * 100}%`; |
125 | | - p.style.animationDuration = `${5 + Math.random() * 8}s`; |
| 150 | + p.style.animationDuration = `${6 + Math.random() * 6}s`; |
126 | 151 | particleContainer.appendChild(p); |
127 | 152 | } |
128 | 153 | </script> |
|
0 commit comments