diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..ac44f2d --- /dev/null +++ b/css/styles.css @@ -0,0 +1,37 @@ +/* Glass Morphism Effect */ +.glass { + background: rgba(255, 255, 255, 0.4); + backdrop-filter: blur(12px); + -webkit-backdrop-filter: blur(12px); + border: 1px solid rgba(255, 255, 255, 0.3); +} + +.dark .glass { + background: rgba(30, 20, 40, 0.4); + border: 1px solid rgba(255, 255, 255, 0.1); +} + +/* Iridescent Background Gradient */ +.iridescent-bg { + background: + radial-gradient( + circle at 0% 0%, + rgba(140, 43, 238, 0.15) 0%, + transparent 50% + ), + radial-gradient( + circle at 100% 100%, + rgba(255, 182, 255, 0.2) 0%, + transparent 50% + ), + radial-gradient( + circle at 50% 50%, + rgba(140, 43, 238, 0.05) 0%, + transparent 100% + ); +} + +/* Fluid Blob Shapes */ +.fluid-shape { + border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; +} diff --git a/index.html b/index.html index d5ebf72..be0447e 100644 --- a/index.html +++ b/index.html @@ -37,39 +37,7 @@ }, }; - +
- +