body {
    overflow: hidden;
}

.nav-header .logo {
    overflow: hidden;
    display: block;
    text-indent: -9999px;
    pointer-events: none;
}

@media (min-width: 1441px) {
    .container {
        transform: scale(.9);
    }
}

.container {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    background: rgb(0 0 0 / 0%);
    position: relative;
    overflow: hidden;
    transform: scale(1.1);
}

@media (max-width: 1068px) {
    .container {
        transform: scale(1.2);
    }
}

@media (max-width: 734px) {
    .container {
        transform: scale(1.25);
    }
}

.pola {
    --h: 5.5vw;
    width: calc(var(--h) * .84);
    height: var(--h);
    position: fixed;
    background-size: cover;
    background-position: 50% 0%;
    top: calc(50% - 30vw);
    left: 0;
}

.pola::after {
    content: '';
    display: block;
    width: 105%;
    height: 105%;
    margin-top: -2.5%;
    margin-left: -2.5%;
    background-size: cover;
}

.pola.loaded::after {
    background-image: url('/home/images/pola.png');
}

footer {
    position: fixed;
    bottom: var(--padding-block);
    left: 0;
    right: 0;
    font-family: var(--font-family-base-text);
    font-size: var(--typography-small);
    text-transform: none;
}

footer a {
    text-decoration: underline;
}