
body {
	margin: 0;
	font-family: sans-serif;
	font-size: 13px;
	line-height: 24px;
	overscroll-behavior: none;
	overflow: hidden;
}

.loading-bar
{
    position: absolute;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #f1f0f0;
	transform: scaleX(0);
	transition: transform 1s;
}

.loading-bar.ended
{
    transform: scaleX(0);
}

#loading-text-intro{
    z-index: 3;
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 100;
	color:#f9f0ec;
	background: linear-gradient(60deg, rgb(45 52 90 / 100%) 00%, rgb(0 0 0 / 100%) 100%);
}

