* {
    box-sizing: border-box;
    font-family: sans-serif;
    font-size: 100%;
}

body {
    color: darkblue;
    background-color: #ccdce9;
}

h1 {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 1.5em;
    font-family: 'Cambria', serif;
    color: black;
    font-weight: bold;
}

h2 {
    border: 0;
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: normal;
    color: blue;
    font-style: italic;
}

h3 {
    margin:2px;
    font-size:0.75em;
    font-style: italic;
    color:darkorange;
}

r {
    color: red;
}

g {
    color: green;
}

hr,
tr,
td {
    margin-top: 4px;
    margin-bottom: 2px;
}

input,
select,
textarea {
    color: #000048;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    background-color: aliceblue;
}

input::placeholder,
textarea::placeholder {
    font-weight: lighter;
    font-size: 0.85em;
}

button {
    font-size: 0.85em;
    font-weight: bold;
    border: 2px solid blue;
    border-radius: 8px;
    background-color: aliceblue;
    min-width: 120px;
    height: 36px;
}

button>* {
    vertical-align: middle;
}

input[type="radio"] {
    margin-top: -3px;
    vertical-align: middle;
}

.dlg {
    border: 4px solid darkorange;
    padding: 8px;
    border-radius: 12px;
    background-image: url("../res/paynow.jpg");
    background-position: 95% 5%;
    background-repeat: no-repeat;
    max-height: 60%;
}
button:hover {
    cursor: pointer;
    background-color: lightblue;
}