/*center the header and main content box on the page

use a reasonable maximum width for readability

include consistent spacing between major sections

visually separate cards from the page background

group related content clearly */

html {
    display: flex;
    justify-content: center;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgb(153, 209, 153);
    max-width: 700px;
}

body * {
    max-width: 700px;
}

.top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem;
    padding: 1rem;
    border-style: dotted;
    border-width: 2px;
    min-width: 200px;
}

#site-title {
    margin: 5px;
}

#site-title a {
    font-size: xx-large;
    text-decoration: none;
    color: rgb(1, 62, 1);
    font-weight: bold;
}

#site-title a:hover {
    color: rgb(12, 111, 12);
}

.nav {
    border-bottom: 1px solid;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 1rem;
}

.nav a {
 text-decoration: none;
 font-size: large;
}

.recipe-cards {
 display: flex;
 flex-direction: column;
}

.card {
    background-color: rgb(175, 205, 115);
    border-radius: 1rem;
    border: solid;
    border-width: 3px;
    margin: 1rem;
    padding: 1rem;
}

.recipe-columns div {
    background-color: rgb(109, 232, 232);
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem;
    border-style: solid;
}