

body{
    background: rgb(140,207,122);
    background: linear-gradient(0deg, rgba(140,207,122,0.8480235042735043) 44%, rgba(240,186,71,0.5203881766381766) 72%);
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    max-width: 1500px;
    margin: auto;
    background-repeat: no-repeat;
}

h1{
    font-family: Helvetica, Arial, sans-serif;
    text-align: center;
    margin-top: 8px;
    color: rgba(3, 2, 2, 0.72);
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 40px;
}

h6{
    text-align: center;
    margin-bottom: 2%;
    font-size: 20px;
    color: rgba(3, 2, 2, 0.72);
}

p{
    font-size: 20px;
}

/* stylize image in card */
.img-style {
    width: 60%;
    margin: 5px;
    box-shadow: 0px 18px 20px rgba(117, 119, 116, 0.521);
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* adds margin to image in the workout search card */
#workout-img {
    margin-bottom: 15px;
}

/* style all cards */
.all-cards, .fav-cards {
    box-shadow: 0px 8px 20px rgba(43, 44, 40, 0.836);
    min-height: 610px;
    background-color: rgba(223, 222, 212, 0.569);
    border-radius: 15px;
    padding: 10px;
}

/* adds margin-bottom to fav cards */
.fav-cards {
    margin-bottom: 50%;
}

/* adds font color to text in cards */
.card-text, .card-title, #recipeTitle {
    color: rgba(3, 2, 2, 0.72);
}

/* stylizes all buttons */
 #workoutFavBtn, #viewWorkoutFavBtn, #recipeFavsBtn, #viewRecipeFavsBtn, #workoutBtn, #recipeBtn {
    color: rgb(255, 255, 255);
    background-color: rgba(35, 53, 32, 0.668);
    border: black;
}

/* favorite button in the recipe generation section */
.fav-btn-div {
    margin-bottom: 15px;
    text-align: center;
}

/* back and clear button on the favorites page */
#goBack, #clear {
    width: 200px;
    height:35px;
    margin: 3px;
    border-radius: 10px;
    border: none;
    background-color: rgba(20, 71, 54, 0.681);
    color: rgb(255, 255, 255);  
}

/* adds hover effect to all buttons */
#workoutFavBtn:hover, #viewWorkoutFavBtn:hover, #recipeFavsBtn:hover, #viewRecipeFavsBtn:hover, 
#workoutBtn:hover , #recipeBtn:hover , #goBack:hover , #clear:hover{
    background-color: rgba(14, 109, 78, 0.776);
    box-shadow: 0px 4px 10px rgba(43, 44, 40, 0.836);
}

/* stylizes nav links: home and favorites */
.navbar-brand {
    font-size: 22px;
    text-align: center;
    width: 120px;
    height:36px;
    border: solid 1px rgba(35, 53, 32, 0.668);
    border-radius: 10px;
    padding-top: 0;
    margin: 3px;
}

/* appended list items on the recipe generation card */
li {
    font-size: 20px;
    color: rgba(3, 2, 2, 0.72);
}

/* images on recipe and workout generation cards */
#recipeImage, #workoutImage {
    height: 320px;
    width: 320px;
    border-radius: 15px;
}

/* saved recipe images on the favorites page */
.fav-img {
    height: 300px;
    width: 300px;
    border-radius: 15px;
    box-shadow: 0px 2px 5px rgba(43, 44, 40, 0.836);
}

/* racipe add to favorite and view favorite buttons */
.recipe-btns {
    margin: auto auto 30px 17px;
}

h5 {
    text-align: center;
    font-size: x-large;
    font-weight: 350;
}

/* used in recipe fav card on in recipe fav js-file */
.fav-Div {
    margin-top: 20px;
    padding-top: 10px;
    border-top: solid 1px rgba(3, 2, 2, 0.312);
}

/* containers used to append workout and recipe favorites */
#wrapper, .recipe-section {
    margin-top: 44px;
    padding-top: 10px;
    border-top: solid 1px rgba(3, 2, 2, 0.312);
}

/* class used in add to favorite message on recipe card */
.hidden {
    display: none;
}
