﻿.catalog-content{
    display:flex;
    flex-direction: row;
    flex-wrap:wrap;
    background-color:#ffffff;
    padding:2px;
    justify-content:space-between;
}
.catalog-item {
    background-color: #f9f5f5;
    font-size: 16px;
    color: red;
    border: 2px solid #fadede;
    border-radius: 10px;
    padding:5px;
    margin-bottom: 5px;
    margin-left:5px;
    width:24%;
    justify-content:space-between;
    

}

    .catalog-item :hover {
        color:orangered
    }


/* Small screens */
@media (max-width: 768px) {
    /* Styles for small screens */
    .catalog-item {
        background-color: #f9f5f5;
        font-size: 16px;
        color: red;
        border: 2px solid #fadede;
        border-radius: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-bottom: 5px;
        margin-left: 5px;
        width: 100%;
        justify-content: space-between;
    }
}


