.card__itemAuthor {
width: 200px;
height: 100px;
background: transparent;
border: 1px solid #000;
display: flex;
justify-content: center;
align-items: center;
}
.card__itemAuthor:hover span {
animation: fadeInOut 2s linear forwards;
}
@keyframes fadeInOut {
30% {
background-color: red;
}
100% {
background-color: white;
}
}