* {
    box-sizing: border-box;
}
@font-face {
    font-family: 'Qirvalen Thin Semi Condensed';
    src: url('/assets/fonts/qirvalen/qirvalen-thinsemicondensed.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto Condensed';
    src: url('/assets/fonts/roboto/roboto-condensed-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #000;
    background: #fff;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: url('/assets/images/aniever.webp') left top / cover no-repeat;
	opacity: 0;
    transition: opacity 0.8s ease-out;
}
main,
footer {
    z-index: 1;
    opacity: 0.01;
    transition: opacity 0.8s ease-out 0.15s;
}
main {
    position: relative;
}
body.is-loaded::before,
body.is-loaded main,
body.is-loaded footer {
    opacity: 1;
}
main {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(3vh);
}
.logo {
    display: block;
    width: min(600px, 65vw);
    height: auto;
}
.content p {
    margin: 0;
    font-size: 35px;
}
footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    font-size: 20px;
}
.legal {
    display: flex;
    gap: 25px;
}
footer a {
    color: inherit;
    text-decoration: none;
}
@media (max-width: 1000px) {
    body::before {
        background-position: 45% top;
    }
	.content {
        transform: translateY(-10vh);
    }
}
@media (max-width: 600px) {
    footer {
        padding: 20px;
    }
    .legal {
        gap: 15px;
    }
}