diff --git a/android/gradle.properties b/android/gradle.properties
index cd2d833ca96b3d1ada4a39df51dc5f5ee67665b7..30298b3b3f04073678e48519b8c043edba635df8 100644
--- a/android/gradle.properties
+++ b/android/gradle.properties
@@ -1,5 +1,5 @@
 org.gradle.jvmargs=-Xmx1536M
 android.useAndroidX=true
 android.enableJetifier=true
-app.versionName=0.0.17
-app.versionCode=17
+app.versionName=0.0.18
+app.versionCode=18
diff --git a/lib/entities/cell.dart b/lib/entities/cell.dart
index f86400dd32361fd4854764c15449ef03d8812fdc..47993965c8f1d9fac19c012c49966aae5ec857c3 100644
--- a/lib/entities/cell.dart
+++ b/lib/entities/cell.dart
@@ -20,6 +20,8 @@ class Cell {
     );
 
     if ((row == 0) && (col == 0)) {
+      double blackPointFontSize = 30.0 - (myProvider.boardSize);
+
       return Stack(
         alignment: Alignment.center,
         children: <Widget>[
@@ -29,7 +31,7 @@ class Cell {
                 '•',
                 style: TextStyle(
                   color: Colors.black,
-                  fontSize: 30.0,
+                  fontSize: blackPointFontSize,
                   fontWeight: FontWeight.w800,
                 ),
                 textAlign: TextAlign.center