html {
    background-color: teal;
}

body {
    background-color: white;
    min-width: 275px;
    width: 75%;
    max-width: 300px;
    margin: 0 auto;
}

.container {
    display: flex;
    flex-direction: column;
    align-content: center;
    margin-top: 20px;
}

.container * {
    align-self: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    min-width: 45%;
    max-width: 275px;
}

fieldset {
    text-align: center;
    min-width: 45%;
    max-width: 275px;
}

fieldset * {
    display: inline-flex;
}

#quick {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 225px;
}

input {
    width: 15%;
}

#totalMod p {
    margin: 10px;
}

#controls {
    flex-direction: row;
    text-align: center;
}

button {
    background-color: #cfc;
    font-family: Verdana, Geneva, sans-serif;
    font-size: medium;
    letter-spacing: 2px;
    word-spacing: 2px;
    color: black;
    font-weight: 400;
    font-variant: small-caps;
    min-width: 30%;
    height: 30px;
    border-radius: 10px;
}

button#reset {
    background-color: #FF4D6A;
    color: white;
}

button#clear {
    background-color: darkgrey;
    visibility: hidden;
}

.shortcut {
    display: block;
    font-size: small;
    font-weight: 200;
    letter-spacing: normal;
    word-spacing: normal;
    font-variant: normal;
    width: fit-content;
    background-color: #9CF;
    text-align: center;
}