body {
    display: flex;
    align-items: center;
    overflow: auto;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    margin: 0;
    background-image: url('./../assets/bgs/ivy.jpg');
    background-size: 150px;
    background-attachment: fixed;
}
header, footer {
    background-image: url('./../assets/bgs/gingham-transparent.png');
    background-size: 75px;
    background-position: 10px 10px;
    background-color: white;
    height: 100%;
    max-height: 700px;
    aspect-ratio: 0.8 / 1;
    position: relative;
    box-sizing: border-box;
    border: 2px solid darkblue;
}
header {
    margin-left: 300px;
    border-right: unset;
    border-radius: 30px 0px 0px 30px;
    box-shadow: -7px 0px 10px darkgray;
}
footer {
    margin-right: 300px;
    border-left: unset;
    border-radius: 0px 30px 30px 0px;
    box-shadow: 7px 0px 10px darkgray;
}
header::before, footer::before {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 5px;
    background: darkblue;
    left: 25px;
    box-shadow: 2px 0 10px black, inset 1px 0 1px white;
}
footer::before {
    left: unset;
    right: 25px;
    box-shadow: -2px 0 10px black, inset -1px 0 1px white;
}
h1 {
    background: white;
    width: fit-content;
    padding: 25px;
    margin: 75px auto 0;
    rotate: -10deg;
    font-family: 'Bold Lining';
    font-size: 600%;
    line-height: 0.5;
    text-align: center;
    border: 5px solid orange;
    outline: 8px solid white;
    outline-offset: -1px;
    box-shadow: 0 0 10px black, 0 0 10px black, 0 0 10px black;
}
#intro {
    background: url('./../assets/bgs/notes.png');
    width: 250px;
    background-size: cover;
    padding: 45px 76px 10px;
    margin-left: 32%;
    rotate: 15deg;
    margin-top: 15px;
    position: relative;
}
#start {
    position: absolute;
    background-image: url('./../assets/graphics/washi-tape.png');
    width: 200px;
    padding: 10px;
    background-size: cover;
    bottom: -48px;
    text-align: center;
    color: black;
    text-shadow: 0 0 10px white, 0 0 20px white, 0 0 10px white;
}
main {
    display: flex;
    height: 100%;
    max-height: 700px;
    border: 2px solid darkblue;
    box-sizing: border-box;
}
section {
    height: 100%;
    max-height: 700px;
    aspect-ratio: 0.8 / 1;
    background-image: url('./../assets/bgs/grain-paper.png');
    background-size: cover;
    box-sizing: border-box;
    border-left: 1px solid gray;
    padding: 5px;
    overflow: auto;
}
h2, #HCB_comment_box h3 {
    font-family: 'Bold Lining';
    font-size: 450%;
    margin: 0;
    text-align: center;
    color: #00005b;
    text-decoration: unset;
    line-height: 1;
}
.serving {
    text-align: right;
    margin: 0 1em;
    font-style: italic;
}
h3 {
    font-family: 'Bold Lining';
    font-size: 300%;
    margin: 5px;
    line-height: 0.5;
    color: #00005b;
    text-decoration: 1px underline double #000082;
}

#HCB_comment_box #HCB_comment_form_box, #comments_list {
    width: 91%;
    margin-left: 14px;
}