body {
    width: 100%;
    height: 100%;
    background-image: url('../fridge.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;


}

.header-1 {

    text-align: center;
    font-size: 6vw;
    letter-spacing: 3px;
    margin-top: 60px;
    margin-bottom: 50px;
    font-family: Arial Rounded MT Bold;
    -webkit-text-stroke-color: solid silver;

}

#headerTwo {
    display: block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 30px;
    justify-content: center;
    font-family: Arial Rounded MT Bold;
    text-align: center;

}



.form-input {
    width: 100% !important;
    text-align: center;
    margin-top: 48px;
    padding: 35px;
    font-size: 35px;
    color: silver;
    letter-spacing: 3px;
    font-family: Arial Rounded MT Bold;
    border: 15px solid rgb(100, 97, 97);
    justify-content: center;
}

#clearbtn {
    background-color: rgb(232, 133, 133);
    color: white;
    width: 60%;

}

.form {
    width: 60.5% !important;

}

.container {
    justify-content: center;


}
/* styling for the text displayed on the cards */
.card-text {
    font-size: 14px;
    text-align: center;
    letter-spacing: 3px;
    font-family: Arial;
}
/*styling for the title of the cards*/
.card-title {
    padding: 4%;
    margin: 0 auto;
    background-color: rgb(232, 133, 133);
    border-radius: 5px;
    color: white;
    border: 1px solid white;
    font-size: 12px;
    width: 60%;
    text-align: center;
}


.infoText {
    margin: 0 auto;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    font-family: Arial;
    border-radius: 5px;
    color: rgb(100, 97, 97);
    width: 60%;

}


/* display styling for nutrition facts */


.infoHead {
    margin: 0 auto;
    text-transform: capitalize;
    color: rgb(232, 133, 133);
    font-weight: bolder;
    font-size: 18px;
    border-radius: 5px;
    width: 60%;
    margin-bottom: 5px;

}



.nutrition {
    text-align: center;
    font-size: 12px;
    font-family: Arial Rounded MT Bold;


}

#nutritionFact {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    font-family: Arial Rounded MT Bold;

}


.nutritioninfo {
    text-align: left;
    font-size: 10px;
    font-weight: bold;
}
/*display for the history section*/
.history {

    text-align: center;
    font-size: 3.7vw;
    letter-spacing: 3px;
    font-family: Arial Rounded MT Bold;


}


#card-container {
    display: inline-flex;

}

.row {
    justify-content: center;

}



h1 {
    font-family: Arial Rounded MT Bold;
    font-size: x-large;
    color: white;
    padding: 10%;
    background-color: silver;
    height: 25%;

}

h2 {

    font-family: Arial Rounded MT Bold;
    color: white;
    padding: 10%;
    background-color: silver;
    font-size: medium;

}

p {
    height: 25%
}
/* styling for recipe cards*/
#recipeOne {
    color: rgb(209, 129, 206);
    font-size: 16px;
}

#recipeTwo {
    color: cornflowerblue;
    font-size: 16px;

}

#recipeThree {
    color: rgb(236, 225, 75);
    font-size: 16px;


}
/* styling for the recipe image */
.imageRecipe {
    width: 100%;

}

/*styling for input ingredient text bar*/
.search {
    width: 100%;
    color: rgb(0, 0, 0);
    background-color: transparent;
    text-align: center;
    border: none;
    font-family: Arial Rounded MT Bold;

}
/*styling for search button*/
#searchBtn {
    font-size: 60%;
    color: white;
    background-color: rgb(232, 133, 133);
    border: none;
    border-radius: 5px;
    width: 30%;

}

.list-group-item {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 15px;
    background-color: silver;
    font-size: 12px;
    border: 1px solid white;
    color: rgb(100, 97, 97);
    border-radius: 5px;

}

.card {
    border: none;
    width: 100%;
    background-color: transparent;

}

.card-body {
    padding: 0px !important;
    background-color: silver !important;
    width: 60%;
    border: 1px solid white;
    border-radius: 5px;
    margin: 0 auto;
}





/*FLIP CARDS 
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    display: flex;
    justify-content: center !important;
    background-color: transparent;
    width: 210px;
    height: 400px;
    perspective: 1000px;
    margin: auto;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border: 5px solid silver;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: rgb(247, 245, 245);
    overflow: scroll;


}

/* Style the back side */
.flip-card-back {
    background-color: rgb(248, 249, 251);
    font-size: 12px;
    text-align: left;
    transform: rotateY(180deg);
    overflow: scroll;
}

.footer {

    margin-bottom: 100px;

}