/* background-color: colorhexa.com/40b0a6 */

* {
    background-color:#40B0A6;
    color: #112F2C;
    /* border: red dashed 1px;  */
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    max-height: 600px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    border: black solid 2px;
    filter:brightness(95%);
}

ol {
    margin-top: 0;
    margin-left:-2.5em;
}

/* Profile Picture - Vanity reasons */
.profile-picture {
    display: block;
    margin: 1em auto;
}

.profile-picture > img {
    display: block;
    max-height: 12em;
    max-width: 12em;
    margin: 0 auto;
}

/* Hero Banner - For catchy 'call to action' */
.hero-banner > *,em {
    padding: 1em 0;
    text-align: center;
    background-color: #ecead4;
    margin: 0;
}

/* Home Page Menu Items */
.title {
    text-align: center;
}

.home-menu ol{
    display: block;
    margin-left: -2.5em;
    text-align: center;
}

.home-menu li {
    display:inline-block;
    text-align: center;
    margin: 0 2em;
    padding-bottom: 1em;
}

.home-menu img {
    display:inline-block;
    width: 20em;
    height: 15em;
    object-fit: cover;
}

/* Navigation Buttons */
.navi {
    display: block;
    text-align: center;
    text-decoration-color: white;
    margin-left: auto;
    margin-right: auto;
}

.navi.socials {
    font-size: 1em;
    background-color: black;
    color: white;
    text-decoration: underline;
    font-weight: bold;
    max-width: 12em;
}

.navi > a {
    display:inline;
    background-color: #ecead4;
    color: black;
    padding: 3px;
    border: solid black 1px;
    text-decoration: none;
    box-shadow: 1px 1px gray;
    /* to create a "button" effect */
}

.navi > a:active { 
    box-shadow: none;
    margin-top: 2px;
    margin-left: 1px;
    /* to create a "button clicked" effect */
}

.ingredients-container {
    /* border: 1px solid blue; */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 0;
}

.ingredients-container > ul {
    list-style-type: none;
}

.ingredients-group {
    flex-shrink: 1;
    flex-grow: 1;
    flex-basis: max-content;
    border: 2px black dashed;
    padding: 1em;
    display: block;
    margin:10px;
    /* height: max-content; */
}

.ingredients-group > * {
    padding: 0 1em;
}

.ingredients-header {
    /* border: 1px dashed red; */
    display: flex;
    flex-direction: column;
    flex-basis: fit-content;
}