diff --git a/app/build.gradle b/app/build.gradle
index 384762b9446c7d0a5577e0fc31499fc588087350..53af1aff401a2530dd96b4331b7dd5487c0fdf88 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -161,6 +161,7 @@ dependencies {
   implementation 'com.android.support:support-fragment:27.0.2'
   implementation 'com.android.support.constraint:constraint-layout:1.0.2'
   implementation 'com.android.support:multidex:1.0.2'
+  implementation 'com.android.support:cardview-v7:27.0.2'
 }
 
 // Ensure the no-op dependency is always used in JVM tests.
diff --git a/app/src/main/res/layout/donation_reminder_dialog.xml b/app/src/main/res/layout/donation_reminder_dialog.xml
index ce29eeb86d186ca8591c6ff29fa24ae4031194e5..3241071fddad7fe50cc9eaf899dc4587320ac74d 100644
--- a/app/src/main/res/layout/donation_reminder_dialog.xml
+++ b/app/src/main/res/layout/donation_reminder_dialog.xml
@@ -2,6 +2,7 @@
 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
+    xmlns:app="http://schemas.android.com/apk/res-auto"
     android:scrollbars="none">
 
     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
@@ -31,13 +32,28 @@
             android:gravity="center"
             android:text="@string/donate_message" />
 
-        <ImageView
-            android:id="@+id/ivImg"
+        <android.support.v7.widget.CardView
             android:layout_width="120dp"
             android:layout_height="120dp"
-            android:layout_marginBottom="@dimen/add_button_margin"
-            android:layout_marginTop="@dimen/add_button_margin"
-            android:src="@drawable/donation_img" />
+            android:innerRadius="0dp"
+            android:shape="ring"
+            app:cardCornerRadius="60dp">
+            <FrameLayout
+                android:layout_width="match_parent"
+                android:layout_height="match_parent"
+                android:background="@drawable/background_main"
+                >
+                <ImageView
+                    android:id="@+id/ivImg"
+                    android:layout_width="120dp"
+                    android:layout_height="wrap_content"
+                    android:scaleType="centerInside"
+                    android:layout_marginBottom="@dimen/add_button_margin"
+                    android:layout_marginTop="@dimen/add_button_margin"
+                    android:src="@drawable/logo" />
+            </FrameLayout>
+        </android.support.v7.widget.CardView>
+
 
         <Button
             android:id="@+id/btnDonate"
@@ -45,7 +61,7 @@
             android:layout_height="38dp"
             android:layout_marginLeft="@dimen/add_button_margin"
             android:layout_marginRight="@dimen/add_button_margin"
-            android:layout_marginTop="@dimen/standard_margin"
+            android:layout_marginTop="@dimen/add_button_margin"
             android:background="@drawable/cust_button_primary"
             android:text="@string/donate_button_donate"
             android:textColor="@color/white"