* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Bahnschrift';
    src: url('../res/bahnschrift.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    height: 100%;
    font-size: 100%;
    font-family: "Bahnschrift", "Arial", "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    background: linear-gradient(to right, #ABC 0%, #DEF 25%, white 50%, #DEF 75%, #ABC 100%);
}

h1 {
    margin: 3px;
    text-align: center;
    font-size: 1.6em;
    color: blue;
    font-weight: bold;
    font-style: italic;
}

h2 {
    margin: 2px;
    text-align: center;
    font-size: 1.2em;
    color: blueviolet;
    font-weight: lighter;
}

h3 {
    margin: 1px;
    font-size: 1em;
    font-weight: lighter;
    color: darkmagenta
}

h4 {
    margin: 0px;
    font-size: 0.7em;
    font-weight: lighter;
    color: aliceblue;
}

r {
    color: red;
}

g {
    color: green;
}

a {
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: darkslateblue;
    font-weight: bold;
    text-decoration: overline underline;
    text-overline-offset: 2px;
}