html {
    background: #2f2f2f;
    user-select: none;
}

body {
    padding: 0;
    margin: 0;
    background: #2f2f2f;
    position: relative;
    width: 100vw;
    height: 100dvh;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #2f2f2f;
    z-index: -1;
}

#background {
    position: relative;
    width: 100%;
    height: 100%;

    background-image: url("../../Gomble/images/default/background.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    z-index: 1;
}

#loadingOut {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);

    aspect-ratio: 1042/109;
    width: 95%;

    background-image: url("../../Gomble/images/default/loadingOut.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#loadingIn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    aspect-ratio: 1019/86;
    width: 97.792%;

    background-image: url("../../Gomble/images/default/loadingIn.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

#loadingText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    aspect-ratio: 354/75;
    width: 30%;

    background-image: url("../../Gomble/images/default/loadingText.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.container {
    aspect-ratio: 360 / 640;

    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
