.categories-area{
    position: relative;
    width: 100%;
    margin: 2.5rem 0 1.5rem 0;
}
.categori-box{
    position: relative;
    width: 100%;
}
.categori-box a{
    border-radius: .5rem;
    padding: 1rem;
    width: 100%;
    height: 100%;
    display: inline-block;
    text-align: center;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: all .2s;
    box-shadow: var(--box-shadow);
    background: #fff;
    margin: .5rem 0;
}
.categori-box a:hover{
    text-decoration: none;
    background: #667eea;
    color:#fff;
    text-shadow: 0 0 2px #333;
}

