html {
    box-sizing: border-box;
}

# {
    box-sizing: inherit;
}

body {
    max-width: 800px;
    margin: 0 auto;
    font-family: "Century Gothic", Helvetica, Geneva, Verdana, sans-serif;
}

h1, h2 {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h1 {
    font-size: 3em;
    margin: 16px 0;
}

h2 {
    font-size: 2em;
    margin: 12px 0;
}

p {
    font-size: 1.2em;
    line-height: 1.6em;
}

#site-title {
    font-size: 4em;
    font-weight: bold;
    text-align: center;
    border-top: 3px solid black;
}

.caption {
    font-size: .8em;
    color:#767676;
    font-style: italic;
    margin-top: 4px;
    text-align: center;
}

.contents {
    list-style-type: none;
    margin-left: -2em;
}

.contents li {
    font-size: 1.4em;
    border: 1px solid black;
    background-color: #ddd;
    padding: 8px 0 8px 1em;
    margin-bottom: 8px;
}

.contents a:link,
.contents a:visited {
    color: #333;
}

.contents a:hover {
    color: white;
}

#splash-image,
.recipe-image {
    width: 100%;
    height: auto;
}

#splash-image {
    border: 5px double black;
    border-radius: 50% 50% 16px 16px; 
}

.recipe-image {
    border-radius: 16px;
}

.recipe-card {
    border: 1px solid black;
    padding: 0 12px 12px;
    margin: 16px 0;
}

.recipe-card ul {
    list-style-type: circle;
}

.recipe-card ul li {
    font-size: 1.2em;
    margin-bottom: 8px;
}

.recipe-card ol {
    list-style-type: lower-roman;
}

.recipe-card ol li {
    font-size: 1.2em;
    line-height: 1.6em;
    margin-bottom: 8px;
}

.home-link {
    display: block;
    color: #333;
    width: 60px;
    padding: 12px 16px;
    margin-bottom: 16px;
    text-align: center;
    border: 2px solid #333;
    border-radius: 12px;
    text-transform: uppercase;
}

a:link {
    text-decoration: none;
}