@font-face {
    font-family: 'Bahnschrift';
    src: url('../res/bahnschrift.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: '7segments';
    src: url('../res/digits7s.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    font-size: 1em;
    font-family: "Bahnschrift", "Arial", "Helvetica Neue", sans-serif;
    background: linear-gradient(to bottom, #ABC, #DEF);
}

.title1 {
    text-align: center;
    vertical-align: middle;
    background-image: linear-gradient(to right, #ABC, white);
    border-bottom: 2px solid gray;
}

.title2 {
    background-image: linear-gradient(to right, white 0%, white 65%, transparent 100%);
    border-bottom: 2px solid gray;
}

.bg_light {
    background-image: linear-gradient(to right, aliceblue 0%, aliceblue 50%, transparent 100%);
}

h1 {
    position: absolute;
    top: 8px;
    font-size: 1.2em;
    color: blue;
    font-weight: bold;
    font-style: italic;
}

div {
    font-size: 1em;
    border: 0;
    margin: 0;
    padding: 0;
}

span {
    font-size: 1em;
}

r {
    color: red;
}

g {
    color: green;
}

input,
select {
    color: darkblue;
    font-family: "Bahnschrift", "Arial", "Helvetica Neue", sans-serif;
    font-weight: bold;
    font-size: 1em;
    background-color: aliceblue;
}

input {
border: thin solid gray;
}

select {
    height: 24px;
}

p,
table,
tr,
td {
    padding: 4px;
    margin: 4px 0px;
    min-width: 20px;
}

.dlg {
    width: 80%;
    max-width: 480px;
    border-color: blue;
    border-radius: 8px;
}

u:hover {
    cursor: pointer;
}