Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

Welcome!

Welcome!

Note: This does not work so well on a mobile / cellphone.

This is the animated welcome banner I originally wanted to display on the home page, but it fails accessibility. It consists of two labels superimposed on each other (negative top margin) with a slight offset (left margin) and a background image (bricks). A CSS animation modifies the label colour and shadow properties, while another CSS animation applies a radial gradient mask on the background image.

I got the base CSS code from Farjana Rashid’s website and Rachel Andrew here, and modified it to suit my needs:

CSS
 /* Neon Text */
 :root{
     --dark: #293138;
     --white: #FFFCCC;
     --glow: #E0823B;
     --pipe: #FAFAFA36; 
 }
 
 .neon-display {
     z-index: 10;
     animation: animate-neon 5s linear infinite;
 }
 
 .neon-display .guten-background-overlay {
     animation: animate-bg 5s linear infinite;
 }

 .neon-display-shadow {
     animation: animate-shadow 5s linear infinite;
 }
 
 
 @keyframes animate-neon {
     0%, 18%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
         color: var(--pipe);      
         text-shadow: none;
     } 
 
     18.1%, 20.1%, 30%, 50%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100% {
         color: var(--white);
         text-shadow: 0 0 10px var(--glow),
             0 0 20px var(--glow),
             0 0 40px var(--glow),
             0 0 80px var(--glow),
             0 0 160px var(--glow),
             0 0 320px var(--glow);
     }
 }
 
 @keyframes animate-bg {
     0%, 18%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
         mask-image: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.1) 0%, rgba(0,0,0,1) 0%);        
         -webkit-mask-size: 100% 100%;
     } 
 
     18.1%, 20.1%, 30%, 50%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100% {
      mask-image: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.1) 0%, rgba(0,0,0,1) 70%);
      -webkit-mask-size: 100% 100%;
     }
 }

 @keyframes animate-shadow {
    0%, 18%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
        color: var(--dark); 
        text-shadow: none;
    } 

    18.1%, 20.1%, 30%, 50%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100% {
        color: var(--pipe); 
        text-shadow: 0 0 10px var(--glow);
    }
}