/* Master Styles */
body {
    margin: 0px;
}

.container {
    display: grid;
    grid-template-columns: 1fr;
}

/* Nav Styles */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 36px
}

.left-side {
    display: flex;
}

.nav-wrapper > .left-side > div {
    margin-right: 16px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.nav-link-wrapper {
    height: 16px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;
}

.nav-link-wrapper a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.5s;
}

.nav-link-wrapper:hover {
    border-bottom: 1px solid black;
}

.nav-link-wrapper a:hover {
    color: black;
}

/* Recipe Styles */
.recipe-items-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.recipe-item-wrapper {
    position: relative;
}

.recipe-img-background {
    height: 350px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.img-text-wrapper {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: left;
}

.logo-wrapper {
    width: 33%;
    margin-bottom: 36px;
    text-align: center;
    color: rgb(29, 29, 29);
    text-decoration-line: underline;
    font-size: larger;
    background-color: rgb(154, 206, 219);
    opacity: 0.90;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
}

.logo-wrapper img{
    width: 100%;
    margin-bottom: 20px;
}

.img-text-wrapper .nutrition-wrapper {
    transition: 1s;
    font-weight: 1200;
    text-align: left;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: transparent;
}

.img-text-wrapper:hover .nutrition-wrapper {
    font-weight: 1200;
    text-align: left;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: rgb(154, 206, 219);
}

.img-darken {
    transition: 1s;
    filter: brightness(10%);
}
/* Search bar wrapper */
.search-bar-wrapper {
    display: flex;
    justify-content: space-evenly;
    padding: 36px
}
.search-bar {
    width: fit-content;
}
/* ABOUT ME */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10%;
}

.about-img {
    display: grid;
    height: 1600px;
    width: 95%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: #000000;
    border-width: 15px;
    border-style: groove;
}

.about-text {
    font-weight: 300;
    font-size: larger;
    text-align: left;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    color: rgb(39, 40, 41);
    background-color: rgb(143, 143, 143);
    padding: 10px;
    border: #000000;
    border-width: 15px;
    border-style: groove;
}

/* INDIVIDUAL RECIPIES */
.ingrediants-calories{
    display: flex;
    justify-content: space-between;
}

.recipe-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10%;
}

.recipe-img {
    display: grid;
    height: 800px;
    width: 95%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: #000000;
    border-width: 15px;
    border-style: groove;
}

.recipe-text {
    font-weight: 300;
    font-size: larger;
    text-align: left;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-transform: uppercase;
    color: rgb(39, 40, 41);
    background-color: rgb(143, 143, 143);
    padding: 10px;
    border: #000000;
    border-width: 15px;
    border-style: groove;
}