/* Just The Footer Of The Page */

body>footer{
    /* border: 5px solid red; */
    margin-top: 100px;
    p{
        display: flex;
        justify-content: space-between;
        margin: 0 10px;
    }
    #stats-box{
        margin: 30px 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        .stat{
            display: flex;
            flex-direction: row;
            justify-content: space-around;
        }
    }
    #stickers>article{
        display: flex;
        flex-wrap: wrap;
        margin: 20px 10px;
        /* gap: 10px; */
        justify-content: space-between;
        >*{
            margin: 5px 2px;
        }
        
        @media (max-width: 1331px) {
            justify-content: center;
        }
    }
}