html,
body {
    padding: 0px;
    margin: 0px;
    overflow: hidden auto;
    -webkit-appearance: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    font-size: 1em;
}

* {
    box-sizing: border-box;
}

img {
    -webkit-user-drag: none;
    user-select: none;
}

header {
    width: 100vw;
    height: 75px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-image: url(../img/banner.webp);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: left center;
}

header .logo {
    height: 75px;
    margin-right: calc(80vw - 190px);
    cursor: pointer;
}

.langbar {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 0.6em;
    color:#171b96;
}

.langbar a {
    color:#171b96;
    margin:0 5px;
    text-decoration: none;
}

.navbar {
    width: fit-content;
    height: calc(1em + 12px);
    position: absolute;
    right: 0;
    top: calc(75px - 1em - 12px);
    background: #23629d;
    padding: 2px;
    padding-left: 10px;
    border-radius: 1.25em 0 0 0;
    color: #FFF;
    user-select: none;
}

.navbar a {
    text-decoration: none;
    color: #FFF;
    display: inline-block;
    margin: 0 8px;
    font-size: 0.9em;
}

.navbar a:hover {
    color: #FFFFFF88;
}

.container {
    width: 100vw;
    height: fit-content;
    border-top: 1px solid #23629d;
    margin-top: 1px;
    padding: 15px 6px 0 6px;

    min-height: calc(100vh - 90px);
}

footer{
    width: 100vw;
    text-align: center;
    background-color: #ececec;
    padding: 1vh 0;
    border-top: .1px solid #a4a4a4;
    font-size: 1.3em;
    user-select: none;
}

august_name {
    font-size: 1.2em;
    font-weight: 600;
    color: inherit;
    font-family: inherit;
    line-height: inherit;
    display: inline-block;
    user-select: none !important;
    cursor: none;
    text-decoration: inherit;
}

.top-control{
    display: block;
    position: fixed;
    cursor: pointer;
    color: #FFF;
    z-index: 99;
    width: 4vh;
    height: 4vh;
    font-size: 3vh;
    text-align: center;
    background: #222;
    right: 1vh;
    bottom: 2vh;
    border-radius: 10%;
    transition: all .35s;
    text-decoration: none;
    user-select: none;
    -webkit-user-drag: none;
}

.top-control:hover {
    background-color: #4765a0;
}