* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    outline: none;
    border: none;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2D2013;
}

.inputText {
    display: flex;
    justify-content: center;
    margin-block: 50px;
}

input {
    height: 55px;
    width: 60vw;
    font-size: 25px;
    padding: 15px;
    border-radius: 10px;
}

.SearchBtn {
    width: 110px;
    margin-left: 20px;
    border-radius: 15px;
    color: #000;
    background-color: #c60505;
    font-size: 25px;
    font-weight: 550;
}

.SearchBtn:hover {
    background-color: red;
    cursor: pointer;
}


@media (min-width : 350px) and (max-width : 500px) {
    button {
        width: 80px;
        margin-left: 10px;
        font-size: 20px;
    }

    input {
        width: 70vw;
    }
}


.image-box img{
    height: 350px;
    width: 300px;
    object-fit: cover;
}

.image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
    margin-block: 30px;
}





.div-box {
    height: 130px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.food-name {
    font-size: 20px;
    font-weight: 500;
}

.food-Area {
    font-size: 25px;
}

.recipe-btn {
    background-color: red;
    padding: 10px 15px;
    font-size: 25px;
    border-radius: 3px;
    margin-top: 10px;
    font-weight: 700;
    cursor: pointer;
}

.recipe-btn:hover {
    background-color: #c60505;
}


/* .food-Instructions {
    height: 300px;
    width: 300px;
    background-color: aqua;
} */