@font-face {
    font-family: 'DINOT'; /*a name to be used later*/
    src: url("/static/DINOT.otf"); /*URL to font*/
}
@font-face {
    font-family: 'DINOT-Bold'; /*a name to be used later*/
    src: url("/static/DINOT-Bold.otf"); /*URL to font*/
}

body {
    background-color: var(--main-background);
    background-size: cover;
    background-position: center;
    color: var(--text);
    font-family: DINOT;
    margin: 0;
    width: 100%;
    min-height: 100vh;
}
.page{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.main {
    height: calc(100vh - 50px)
}
.headerueber{
    background: var(--header-button-active);
}
.content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 1rem;
    margin-top: 30px;
    box-sizing: border-box;
    overflow-y: auto;
}
.überschrift{
    margin-top: 15px;
    margin-bottom: 5px;
    font-family: DINOT-Bold;
    font-size: 18pt;
}
