/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
     HTML content. To learn how to do something, just try searching Google for questions like
     "how to change link color." */

* {
    font-size: 13px;
}

body {
    display: flex;
    background-color: white;
    color: black;
    font-family: Verdana;
}

.result {
    height: 1.2em;
    color: darkblue;
    font-weight: bold;
    font-family: "Latin Modern Math", serif;
    font-size: 1.2em;
}

.sixop {
    margin: 10px;
    padding: 20px;
    background-color: #e6f4fc;
    outline: 2px solid #c4d2da;
    border-radius: 3px;
}

.expression {
    display:grid;
    background-color: #b3ffad;
    justify-content: space-between;
    margin: 10px;
    padding: 20px;
    min-height: 300px;
    outline: 2px solid #91dd8b;
    border-radius: 2px;
}

.exguide {
    background-color: lightgrey;
    color: black;
    font-size: 9px;
    padding: 3px;
    outline: 2px solid lightgrey;
    border-radius: 2px;
}

.red {
    color: #ee2222;
    font-weight: bold;
    font-size: 20px;
}

.fancy {
    font-family: "Snell Roundhand", "URW Chancery L", "Apple Chancery", cursive;
}
