diff --git a/index.html b/index.html
index 216a665..42635b7 100644
--- a/index.html
+++ b/index.html
@@ -1308,7 +1308,7 @@
function getReadingTime(content) {
const wpm = 250;
const words = content.trim().split(/\s+/).length;
- return Math.ceil(words / wpm);
+ return Math.floor(words / wpm);
}