.glowing-text {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #fff, #3a3a4f, #fff);
    background-size: 200% 200%;
    
    /* Prefixed and Standard Background Clip */
    -webkit-background-clip: text;
    background-clip: text;
    
    /* Transparent text to allow background to show */
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    
    /* Animation */
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

footer {
    background-color: #222; /* Background color */
    padding: 20px 0;
}

.container {
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
