diff --git a/components/content/image.vue b/components/content/image.vue
index 91051a9..ed62c79 100644
--- a/components/content/image.vue
+++ b/components/content/image.vue
@@ -10,7 +10,7 @@ const imgSrc =
 
 <template>
   <figure class="flex flex-col items-center">
-    <img :src="imgSrc" />
-    <figcaption class="text-center"><slot /></figcaption>
+    <img :src="imgSrc" class="drop-shadow-lg" />
+    <figcaption class="text-center m-0"><slot /></figcaption>
   </figure>
 </template>