diff --git a/index.html b/index.html index 3f88295..12de60d 100644 --- a/index.html +++ b/index.html @@ -16,6 +16,10 @@ /* Initially hide the message text */ opacity: 0; transition: opacity 0.5s ease-in-out; /* Add smooth transition */ + text-shadow: 1.5px 0 2px #000, 0 -1.5px 2px #000, 0 1.5px 2px #000, -1.5px 0 2px #000; /* Readability shadow */ + } + #message.show { + opacity: 1; } #alert-image { display: none; @@ -35,15 +39,18 @@