﻿
.BackgroundView {
    position: fixed;
    width: 100svw;
    height: 100svh;
    overflow: hidden;
    background-image: var(--BackgroundImage);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index:var(--BaseDepth);
}

.GlassView {
    position: absolute;
    width: 100svw;
    height: 100svh;
    background-color: var(--BackgroundCover);
    backdrop-filter: var(--SpotlightBlur);
    -webkit-backdrop-filter: var(--SpotlightBlur);
    z-index: var(--BaseDepth);
}

.LogoView {
    position: absolute;
    width: 100svw;
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    row-gap: 7px;
    flex-grow: 1;
    z-index: var(--BaseDepth);
}

.Logo {
    filter: var(--LogoColor);
    opacity: var(--LogoOpacity);
    margin-top: -30%;
}

.Logotype {
    font-size: 1.2em;
    font-weight: 400;
    color: var(--LogotypeColor);
}

.Logotype span {
    font-weight: 700;
    color: var(--LogotypeColor);
}