/*
Copyright (c) 2025 by Vlad Murariu (https://canigetakiss.com)
*/

.title {
    display: flex;
    position: absolute;
    align-content: center;
    justify-content: center;
    width: calc(100% - 90px - 19px);
    margin-top: 35px;
}

#title {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: 'Pacifico', cursive;
    letter-spacing: 2px;
    /* font-weight: 600; */
    font-size: 36px;

    animation: lightingAnim 2s infinite alternate-reverse;
    background-image: linear-gradient(90deg, #ffc5e6, #ff257e, #ff2644, #d60000, #000000);
    background-size: 200% 200%;
}


@keyframes lightingAnim {
    0% {
        background-position: 200% 0%;
    }

    100% {
        background-position: 0% 200%;
    }
}
