html {
    height: -webkit-fill-available;
}

body {
    margin: 0;
    padding: 0;
    min-height: -webkit-fill-available;
    width: 100vw;
    overflow: hidden;
    overscroll-behavior: none;
    position: fixed;
}

.ctaDiv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: calc(var(--vh, 1vh) * 100);
    padding: 20px;
    box-sizing: border-box;
    background: #1b1b1b;
    z-index: 99;
}

#unity-container {
    position: absolute
}

#unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

#unity-container.unity-mobile {
    width: 100%;
    height: 100%
}

#unity-canvas {
    width: 100%;
    height: 100vh;
    background: #1E1E1E;
    background-size: cover;
    z-index: -99;
}

.unity-mobile #unity-canvas {
    width: 100%;
    height: 100vh;
    background: #1E1E1E;
    background-size: cover;
    z-index: -99;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none
}

#unity-loading-bar {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 65px;
}

#unity-logo {
    width: 120px;
    height: 120px;
    background: url('memoark_Logo.png') no-repeat center;
    background-size: contain;
}

#unity-progress-bar-empty {
    width: 185px;
    height: 6px;
    background: #5D5D5D;
    border-radius: 10px;
}

#unity-progress-bar-full {
    width: 0%;
    height: 6px;
    background-color: #FF6600;
    border-radius: 10px;
}

#unity-footer {
    position: relative
}

.unity-mobile #unity-footer {
    display: none
}

#unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url('webgl-logo.png') no-repeat center
}

#unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px
}

#unity-fullscreen-button {
    float: right;
    width: 38px;
    height: 38px;
    background: url('fullscreen-button.png') no-repeat center
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}

#startARButton {
    display: flex;
    flex: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: #FF6600;
    color: white;

    padding: 8px 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    gap: 4px;

    border: none;
    border-radius: 100px;

    cursor: pointer;
    box-shadow: 0px 1px 4px #00000080;
}

#cancelButton {
    display: flex;
    flex: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    background-color: #000000;
    color: white;

    padding: 8px 40px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    gap: 4px;

    border: none;
    border-radius: 100px;

    cursor: pointer;
    box-shadow: 0px 1px 4px #00000080;
}

#startARDiv p {
    width: 80vw;
    margin-bottom: 32px;
    color: white;

    font-family: 'Open Sans';
    font-size: 18px;

    text-align: center;
    letter-spacing: -0.01em;
}

.middleContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.version-line {
    color: #D1D1D1;
    text-align: center;
    font-family: 'Open Sans';
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40Px;
    gap: 10px;
}

.version-line::before,
.version-line::after {
    content: "";
    flex: 1;
    height: 1px;
    width: 20vw;
    background-color: white;
    opacity: 0.3;
}

@media (max-width: 320px) {
    #startARDiv p {
        font-size: 17px;
    }
}
