body {
  background-image: url(furley_bg.png);
  font-family: Georgia, "Times New Roman", Times, serif;
  margin-left:30px;
  margin-bottom:2rem;
}  

a {
    color: #a09f9d;
}

    a:hover {
        color: black;
        transition: color 0.5s;
    }  

li {
            margin-bottom: 1rem;
        }

   .buttonStyle {
            border: 2px solid #acacac;
            border-radius: 10px;
            padding: 0.7rem;
        }

        .buttonStyle:active {
            border: 2px solid white;
        }

        .command { /* the command name, like \alpha */
            font-family: monospace;
            width: 20%;
        }

        .description { /* a brief description of each command */
            width: 70%;
        }

        .exampleTable td {
            padding-bottom: 10px;
            padding-right: 10px;
        }

        .exampleTable2 td {
            padding-bottom: 3px;
            padding-right: 10px;
        }

        .ltr { /* each letter of the alphabet, like the 'A' heading */
            font-size: xx-large;
            margin-top: 30px;
        }

        .ltrTable { /* the table for each letter of the alphabet, like 'A' */
            width: 100%;
        }

        .ltrTableRow { /* each row in class="ltrTable" */
            vertical-align: top;
        }

        .multiItemFlex {
            display: flex;
            flex-wrap: wrap;
            column-gap: 2rem;
            row-gap: 1rem;
            justify-content: center;
            text-align: center;
        }

        .sampleChar {
            padding-bottom: 5px;
            padding-top: 5px;
            text-align: center;
            vertical-align: top;
            width: 10%;
        }

        .secondLevelTitle { /* typically use with <h2> */
            font-size: 2rem;
            line-height: 1.1;
            margin-bottom: 0.5rem;
            margin-top: 1rem;
        }

        .syntax {
            font-family: monospace;
            font-size: large;
            background-color: #e0e070;
            padding: 3px;
            text-align: center;
            margin-top: 7px;
            margin-bottom: 7px;
        }

        .thirdLevelTitle { /* typically use with <h3> */
            font-size: 1.7rem;
            margin-bottom: 0.5rem;
            margin-top: 1rem;
        }

        .toggleDivStyle {
            /* used with buttons that open/close divs */
            border-left: 3px solid grey;
            display: none; /* also put display:none; on div itself, for proper behavior */
            margin-top: 1rem;
            margin-left: 0.75rem;
            padding-left: 0.75rem;
        }

        .toggleDivStyle li {
            margin-bottom: 1rem;
        }

#mainTitle, .secondLevelTitle, .thirdLevelTitle {
    color: #222;
    font-family: 'Oranienbaum', serif;
    font-weight: 500;
    text-shadow: 1px 1px 1px white;
}

#mainTitle {
    font-size: 2.3rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
    margin-top: 0;
}


       