:root {
    --bg-base: rgb(20, 0, 46);
    --bg-linear: linear-gradient(0deg, rgb(15, 16, 17) 0%, rgb(15, 16, 17) 100%);

    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    font-size: 1.6rem;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--bg-base);
    background: var(--bg-linear);
}

#unity-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
}

#rotate-prompt {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    background: var(--bg-linear);
}

#rotate-prompt .chi {
    font-size: 1.4rem;
    letter-spacing: .16rem;
}

#loading-screen {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-linear);
}

#loading-screen .loading {
    width: 60%;
    max-width: 560px;
    height: fit-content;
    margin-bottom: 80px;
}

#loading-screen .loading img {
    width: 200px;
    margin: 28px auto;
}

#loading-screen .loading > * {
    display: block;
    width: 100%;
}

#loading-screen .loading .bar {
    display: block;
}

#loading-screen #start-button {
    display: block;
    font-family: inherit;
    font-size: 0.7rem;
    width: fit-content;
    margin: auto;
    padding: 4px 26px;
    background-color: transparent;
    color: white;
    border-radius: 24px;
}

#mobile-prompt {
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    color: white;
    background: var(--bg-linear);
}

#mobile-prompt .eng {
    margin: 8px 12px;
    font-size: 0.9rem;
}

#mobile-prompt .chi {
    margin: 8px 12px;
    font-size: 1rem;
    letter-spacing: .1rem;
}

#error-message {
    position: absolute;
    color: red;
    width: 100%;
    height: 100%;
    left: 5%;
    top: 2%;
    font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
    display: none;
}

#chooseCamSel {
    display: none;
}

.bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    height: 10px;
    border-radius: 50px;
}

.bar .fill {
    width: 30%;
    height: 100%;
    background-color: white;
    border-radius: 50px;
}
