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