diff --git a/lib/ui/widgets/first_screen/card_stack.dart b/lib/ui/widgets/first_screen/card_stack.dart
index f7c36ebed08524c528fce6135911a7be3a745059..8b49bab1ffaf26b2e9cf4866ea3b60670d38fb4b 100644
--- a/lib/ui/widgets/first_screen/card_stack.dart
+++ b/lib/ui/widgets/first_screen/card_stack.dart
@@ -29,13 +29,30 @@ class _CardStackState extends State<CardStack> {
           ),
         ),
         Positioned(
-          right: 30,
-          bottom: -13,
-          child: FloatingActionButton(
-            onPressed: () {},
-            child: const Icon(Icons.add),
-          ),
-        )
+            right: 30,
+            bottom: -15,
+            child: Container(
+              decoration: const BoxDecoration(
+                shape: BoxShape.circle,
+                boxShadow: <BoxShadow>[
+                  BoxShadow(
+                    color: Colors.black45,
+                    spreadRadius: 10,
+                    blurRadius: 10,
+                    offset: Offset(0, 6),
+                  ),
+                ],
+              ),
+              child: FloatingActionButton(
+                // elevation: 20,
+                /* shape: RoundedRectangleBorder(
+                  side: const BorderSide(color: Colors.grey, width: 1.0),
+                  borderRadius: BorderRadius.circular(20),
+                ), */
+                onPressed: () {},
+                child: const Icon(Icons.add),
+              ),
+            ))
       ],
     );
   }