/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root{
    --primary: #6B8E7F; 
    /* Used for buttons, links, highlights, icons. */
    --secondary: #D4A373;
    --background: #FAF9F6;
    --card-bg: #F3EFEA;
    --text-main: #2E2E2E;
    --text-muted: #6F6F6F;
}

.home-button{
    display: inline-block;
    background-color: var(--primary);
    font-weight: bold;
    padding: 10px;
    border-radius: 20px;
}

a{
    display: block;
    text-decoration: none;
    color: var(--background);
}

body{
    background-color: var(--background);
    color: var(--text-main);
    margin: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
}

img{
    display: block;
    width: 500px;
    height: auto;
    margin: 0 auto;
}

h1, h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

h2{
    font-size: 30px;
    margin: 10px 0px 5px;
}

p {
    width: 500px;
    text-align: center;
    margin: 0 auto;
}

div p, 
div li{
    color: var(--text-muted);
}

div li{
    margin: 5px 0px;
}

div ul{
    list-style-type: disc;
}

.list-space{
    padding: 5px 40px;
}

.button{
    width: 300px;
    height: auto;
    background-color: var(--primary);
    padding: 5px;
    text-align: center;
    border-radius: 15px;
    margin: 5px auto;
}

ol{
    list-style-type:lower-roman;
}

.recipe-card{
    width: 550px;
    height: auto;
    border: var(--primary) 3px solid;
    border-radius: 20px;
    background-color: var(--card-bg);
    margin: 0 auto;
    padding: 15px 0px;
}

div h1{
    padding-top: 5px;
}


.home-button:hover, 
.button:hover{
    background-color: var(--secondary);
}