/* Base font stack with Candara as the primary font */
body {
    font-family: Candara, Calibri, Segoe, Segoe UI, Optima, sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: brown;
    background-color: wheat;
    margin: 0;
    padding: 0;
}

/* Headings styling */
h1, h2 {
    font-family: 'Comic Sans MS';
    color: brown;
    margin-left: 10px
}

h3, h4, h5, h6 {
    font-family: Candara, Calibri, Segoe, Segoe UI, Optima, sans-serif;
    font-weight: bold;
    color: brown;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* Paragraph styling */
p {
    margin: 0 10px;
}

/* Links */
a {
    color: chocolate;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

/* Buttons */
button {
    font-family: Candara, Calibri, Segoe, Segoe UI, Optima, sans-serif;
    font-size: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    background-color: brown;
    color: white;
    cursor: pointer;
}

    button:hover {
        background-color: goldenrod;
    }

table, th, td {
    border: 2px solid brown;
    border-collapse: collapse;
}

hr {
    border-color: brown;
    background-color: brown;
}