* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient( 180.5deg,  rgba(0,128,128,1) 8.5%, rgba(174,206,100,1) 118.2% );
}

.wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    background-color: #fff;
    padding: 20px;
    max-width: 780px;
    width: 100%;
    height: 570px;
    border-radius: 5px;
    text-align: center;
}
/* Buttons-block */
.caterory-btn {
    padding: 10px;
    cursor: pointer;
    transition: all .3s linear;
    outline: none;
    border: none;
    border-radius: 5px;
}
.caterory-btn i {
    margin-right: 10px;
}
.caterory-btn.all {
    background-color: rgb(153, 185, 236);
}
.caterory-btn.meat {
    background-color: tomato;
}
.caterory-btn.fruits {
    background-color: yellowgreen;
}
.caterory-btn.dairy-products {
    background-color: bisque;
}

/* Category-block */
.categories-block {
    margin-top: 30px;
}
.category-list {
    list-style: none;
    /* border: 1px solid #999; */
    border-radius: 5px;
}
.category-item {
    margin-bottom: 5px;
    font-size: 28px;
}
.category-item i {
    margin-right: 10px;
}
.category-item.meat {
    background-color: rgba(255, 99, 71, .3);
}
.category-item.fruits {
    background-color: rgba(154, 205, 50, .3);
}
.category-item.dairy-products {
    background-color: rgba(255, 228, 196, .3);
}