diff --git a/html/landing.ejs b/html/landing.ejs index a401a997..2fe2d5a1 100644 --- a/html/landing.ejs +++ b/html/landing.ejs @@ -361,9 +361,29 @@ line-height: 24px; z-index: 10; /* Was 2 */" } - + .fade-in-element { + opacity: 0; + transition: opacity 2.5s ease-in-out; /* Adjust the duration and easing as needed */ +} + +.fade-in-element.fade-in { + opacity: 1; +} + + + +