#about {
    padding: 15vh 0 0 0;
    align-items: center;
    gap: 3vh;
}

    #about article{
        padding-top: 1rem;
        max-width: 80%;
        gap: 1rem;
    }

        #about article .card{
            width: 350px;
            height: 450px;
            align-items: center;
        }

        #about article .card h3{
            font-size: var(--normal-font-size);
            text-align: center;
        }

        #about article .card iconify-icon{
            font-size: 6rem;
        }

        #about article .card .content{
            gap: 0.5rem;
        }
        #about article .card p{
            color: var(--text-color);
            font-size: 0.75rem;
        }

@media (max-width: 1250px) {
    #about article .card{
        width: 280px;
        height: 330px;
    }
}