body {
    --main-bg: #5857a4;
    --backup-bg: #4954aa;
    background: var(--main-bg);
    background: rgb(36,30,77);
    min-height: calc(100vh - 1em);
    background: linear-gradient(180deg, rgba(98,100,176,1) 0%, rgba(36,30,77,1) 100%);
    word-wrap: break-word;
}

@font-face {
    font-family: "DefaultFont";
    src: url('fonts/umi_font5.otf');
}

.navbar {
    margin: auto;
    width: fit-content;
    border: .2em solid #2c2767;
    height: auto;
}


.navbartext {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    font-family: "DefaultFont";
    margin: 0;
    padding: 0;
    height: auto;
    background: #3c2f7e;
}


.navbartext > li {
    line-height: 200%;
    display: inline-block;
    font-size: 1.25em;
    text-align: center;
    list-style: none;
}

.navbartext > li:hover {
    color: #fdfffe;
    background-color: #24174a;
}

.navbartext > li:visited { 
    text-decoration: none;
}

.navbartext > li > a {
    padding: 0 1.25em;
    display: block;
    text-decoration: none;
    color: inherit;
}

.active {
    background-color: #24174a;
    color: #aca0ac;
}
