body {
    min-height: 100vh;
    margin-top: 0;
    background-color: #eee;
    background-image: url('/assets/images/cloth_back.png');
}

.main {
    min-height: 100vh;
    max-width: 960px;
    margin: auto;
    background-color: #fff;
    background-image: none;
    box-shadow: 0em 1em 1em black;
}

.header, .content, .footer {
    padding: .5em;
}

.header {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    background-color: #eee;
    border-top: #bcd solid 4px;
}

.header h1 {
    background-image: url('/assets/images/logo.svg');
    background-repeat: no-repeat;
    background-position: center center;
    height: 100px;
    font-size: 0;
}

a {
    color: black;
}

h1, h2, h3, h4 h5 {
    font-weight: bold;
    font-size: larger;
    margin-bottom: .05em;
}

a:hover {
    text-decoration-style: double;
}

.header nav ul {
    display: flex;
    justify-content: space-between;
}

.header nav ul li a {
    color: black;
    text-decoration-style: double;
}

.header nav ul li a:hover {
    background-color: #ddd;
}

.ingredients {
    border-right: 4px solid #bcd;
    padding-left: .5em;
    margin-right: .5em;
}

.ingredients ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer {
    width: 100%;
}

.attribution {
    text-align: center;
    padding-top: 1em;
}

@media only screen and (min-width: 960px) {
    .main-cooking {
        display: grid;
        grid-template-columns: 1fr 3fr;
    }
}

@media only print {
    .main {
        position: relative;
    }

    .main-cooking .ingredients {
        border-right: none;
        width: 30%;
        float: left;
    }

    .notes, .tags {
        display: none;
    }

    .header {
        display: none;
    }

    a: {
        text-decoration-style: none;
    }
}

ul.listing {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.listing a {
    font-weight: bold;
}

.description {
    font-size: smaller;
}

ul.listing .date {
    font-size: smaller;
    font-family: Impact, sans-serif;
}

ul.listing li {
    padding-bottom: 1em;
}

.main-cooking {
    padding-top: 2em;
    padding-bottom: 2em;
}
