.content-img {
    width: 100%;
    margin: 40px 0;
    box-shadow: 0px 9px 13px #00000024;
}

.date {
    color: #777777;
    text-transform: uppercase;
    margin-bottom: 27px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    33% {
        background-position: 50% 50%;
    }
    66% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.signature {
    background: linear-gradient(90deg, #e79fb4, #c5449c, #9d69c6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s infinite;
}