section {
    article {
    background: linear-gradient(to right, #0009, orangered);
    border-radius: 50%;
    color: #FF1806;
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    text-shadow: 0 2px #fff;
    width: 300px;
    font-size: 6rem;
    &:hover {
        cursor: pointer;
        animation: 1s animArticle ease-in infinite;
    }
    }
}
@keyframes animArticle{
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}