body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    background-color: rgb(246, 245, 250);
}

.largeBoldFont {
    font-size: large;
    font-weight: bold;
}

footer {
    padding: 15px;
    background-color: darkslateblue;
    color: white;
    text-align: center;
    font-size: smaller;
}

footer a {
    color: white;
}

.bg-darkblue {
    background-color: darkslateblue;
}

.nodisplay {
    display: none;
}

.center-div {
    display: flex;
    justify-content: center;
}

.clearable {
    position: relative;
}

.clearable input[type="text"] {
    padding-right: 24px;
}

.clearable .clear-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #aaa;
}

.clearable .clear-button:hover {
    color: #888;
}

#resultDiv {
    text-align: center;
    background-color: rgb(108, 79, 30);
    color: white;
}

.resultText {
    text-align: center;
    font-size: large;
    font-weight: bolder;
}

.resultText2 {
    font-size: large;
    font-weight: bolder;
    text-align: center;
    width: 90%;
    box-sizing: border-box;
    padding: 5px;
    background-color: aliceblue;
}

.titleDiv {
    text-align: center;
    color: darkolivegreen;
    font-weight: bolder;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.equation {
    font-size: large;
    font-weight: bolder;
    text-align: center;
    width: 90%;
    box-sizing: border-box;
    padding: 5px;
    background-color: aliceblue
}

td {
    text-align: left;
    padding-left: 8px;
}

img.half {
    height: 50%;
    width: 50%;
}

page-padding {
    padding-left: 25%;
    padding-right: 25%;
}