/*
author: Harsh Patel
description: Optional styling for the index.html
content: This file contains the styling for the webpage for Grandma's Famous Desserts.
 */

body {
    background-color: rgba(164,164,0, 30%);
    padding: 2em;
}

#granny {
    width: 30%;
    margin-left: 35%;
}

h1 {
    text-align: center;
    font-size: 32pt;
    font-weight: bold;
    font-family: "Cursive", Helvetica, Arial, sans-serif;
}

h2 {
    font-size: 24pt;
    font-family: "Cursive", Helvetica, Arial, sans-serif;
    border: 2px solid black;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    border-radius: 0.5em;
    background-color: rgba(121,121,2, 50%);
}

pre {
    font-family: monospace;
    text-align: left;
    margin-top: 40px;
}

a {
    color: blue;
    font-size: 15pt;
    text-decoration: underline;
    margin-left: 50px;
}

.empty {
    text-decoration: none;
}

