```css
body {

    margin: 0;
    min-height: 100vh;

    background: #fff4dc;

    font-family: Arial, sans-serif;

    color: #8b6240;

}


/* =====================================
   Pablo's Font
   ===================================== */

h1,
h2,
h3,
strong,
b {

    font-family: "Cedarville Cursive", cursive !important;

}


/* =====================================
   Main Title
   ===================================== */

h1 {

    font-size: 60px;

    color: #a06f45;

}


/* =====================================
   Clickable Links
   ===================================== */

a,
a:visited {

    color: #c49a24 !important;

    text-decoration: none;

}


a:hover,
a:active {

    color: #a87912 !important;

    text-decoration: underline;

}


/* =====================================
   Navigation Links
   ===================================== */

.site-nav a,
.site-nav a:visited {

    color: #c49a24 !important;

    font-family: Arial, sans-serif;

    text-decoration: none;

}


.site-nav a:hover {

    color: #a87912 !important;

    text-decoration: underline;

}


/* =====================================
   Buttons
   ===================================== */

button {

    background: #f6d77a;

    color: #8b6240;

    border: none;

    padding: 12px 30px;

    margin: 8px;

    border-radius: 25px;

    font-size: 18px;

    cursor: pointer;

    box-shadow: 0 5px 10px rgba(0,0,0,0.15);

}


button:hover {

    transform: scale(1.05);

    background: #f2cd5c;

}


/* =====================================
   Recipe / Order
   ===================================== */

#recipe,
#todaysRecipe {

    color: #8b6240;

    font-size: 24px;

}


/* =====================================
   Drawing Area
   ===================================== */

canvas {

    background: white;

    border: 8px solid #d6a56d;

    border-radius: 20px;

    margin-top: 20px;

}


/* =====================================
   Toolbar
   ===================================== */

.toolbar {

    background: #ffeec7;

    width: 300px;

    margin: 20px auto;

    padding: 15px;

    border-radius: 20px;

}


/* =====================================
   Messages
   ===================================== */

#message {

    color: #8b6240;

}


/* Make headings inside messages use Pablo's font */

#message h2,
#message h3,
#message strong {

    font-family: "Cedarville Cursive", cursive !important;

}
```

```css
/* =========================================
   PABLO'S PATISSERIE FONT
   ========================================= */

h1,
h2,
h3,
strong,
b {
    font-family: "Cedarville Cursive", cursive !important;
}

/* =========================================
   MUSTARD LINKS
   ========================================= */

a,
a:link,
a:visited {
    color: #c49a24 !important;
    text-decoration: none !important;
}

a:hover,
a:active {
    color: #a87912 !important;
    text-decoration: underline !important;
}

/* Navigation */
.site-nav a,
.site-nav a:link,
.site-nav a:visited {
    color: #c49a24 !important;
    text-decoration: none !important;
}

.site-nav a:hover,
.site-nav a:active {
    color: #a87912 !important;
    text-decoration: underline !important;
}
```
