:root {
    --primary-text: #424242;
    --light-text: #777777;
    --body-color: #f5f0e9;
    --body-text: #878986;
    --primary-color: #225500;
    --alternative-color: #d4aa00;
    --white: #fafafa;
    --black: #424242;
    --shadow-color: #bbbbbb;
    --root-font-size: 16px;
    --gutter: 20px;
    --gutter-reset: -20px;
}

@media screen and (max-width: 479px) {
}

@media screen and (min-width: 480px) and (max-width: 767px) {
}

@media screen and (min-width: 768px) and (max-width: 991px) {
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
}

@media screen and (min-width: 1200px) {
}

/* ************************** */
/* ********** Body ********** */
/* ************************** */
html {
    color: var(--primary-text);
    font-size: var(--root-font-size);
    font-family: sans-serif;
    background: var(--body-color);
}

html,
body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    font-weight: bold;
   color: var(--primary-color);
}

.content {
}

/* ***************************** */
/* ********** Content ********** */
/* ***************************** */
.headline {
    display: flex;
    margin-top: 20px;
}

.headline > * {
    padding: 5px 10px;
}

.headline > img {
    width: 200px;
    max-width: 100%;
}

.recipe-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 950px;
}

.recipe {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 30px;
    width: 290px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 3px 3px 6px var(--shadow-color);
    overflow: hidden;
}
@media screen and (max-width: 500px) {
    .recipe {
        width: 100%;
        margin: 0 0 20px 0;
        border-radius: 0;
        box-shadow: 0 3px 6px var(--shadow-color);
    }
}

.recipe:hover {
    cursor: pointer;
    box-shadow: 6px 6px 6px var(--shadow-color);
}

.recipe > h3 {
    margin: 0;
    text-transform: uppercase;
}

.recipe img {
    margin: 20px -30px -30px -30px;
    width: calc(100% + 60px);
}

.recipe ul {
    margin: 0;
    padding: 0;
    font-size: .8em;
}
