html,
body {
    font-family: "Flama Medium", system-ui, sans-serif;
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

body .content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.navigation {
    flex-basis: auto;
    flex-grow: 0;
    height: auto;
}

.application {
    flex-grow: 1;
    height: 100%;
}
.application > div {
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}
