#category_select{
    width: 230px;
    text-transform: uppercase;
}


.jedlo_item{
    border: 2px solid #000;
    border-radius: 5px;
    width: 310px;
    height: inherit;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.food_img{
    width: 200px;
    height: 200px;
    margin-top: 40px;
    border-radius: 90%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.food_grams{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.food_desc{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.food_name{
    text-transform: uppercase;
}

.food_price{
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

.food_info{
    margin-bottom: 30px;
}


@media screen and (max-width: 1000px) {
    .jedlo_item {
        width: 275px;
        height: 460px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
    
}

@media screen and (max-width: 900px) {
    .jedlo_item {
        width: 240px;
        height: inherit;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
    
}


@media screen and (max-width: 900px) {
    .jedlo_item {
        width: 48%;
        height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    } 
}


@media screen and (max-width: 600px) {
    .jedlo_item {
        width: 100%;
        height: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        border: 2px solid black;
    }
    #category_select {
        width: 100%;
        text-transform: uppercase;
    }
}