body{
    margin:0;
}

.logo-ar{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    padding: 10px 0 20px 0;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.logo-ar img{
    width: 70%;
    max-width: 200px;
    z-index: 10;
}

#scanning-overlay {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: 0.6s;
}

#scanning-overlay.hidden {
    opacity: 0;
}

.scanner{
    width: 120px;
    height: auto;
}

.ar-hint{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 101;
    opacity: 0.15;
    width: 300px;
    height: auto;
}

.ui-text{
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%) translateY(0);
    z-index: 10;
    padding: 20px 40px;
    /* background-color: #ffffffe2; */
    /* border:rgb(210, 210, 210) 1px solid; */
    /* border-radius: 12px; */
    height: auto;
    opacity: 1;
    transition: 0.6s;
    max-width: 300px;
    line-height: 1.5;
    letter-spacing: 2px;
    color: rgb(26, 26, 26);
    text-align: center;
}

.ui-text.hidden{
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
}

.inactive-plane{
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #141414d8;
    color:rgb(242, 242, 242);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.inactive-plane.hidden{
    opacity: 0;
}

.ui-text-content{
    font-size: 24px;
    color: black;
    width: 100%;
    font-weight: bold;
    /* -webkit-text-stroke: 1px white;
    text-stroke: 1px white; */

    text-shadow: -1px -1px 0 white,
                1px -1px 0 white,
                -1px 1px 0 white,
                1px 1px 0 white;
}

/* .ui-text-content::before {
    content: attr(data);
    position: absolute;
    width: 100%;
    transform: translateX(-50%) ;
    left: 50%;
    z-index: -1;
    -webkit-text-stroke: 4px white;
    text-stroke: 4px white;
    white-space: wrap;
} */