html {
    font-size: 10px;
}
body{ 
    padding: 0;
    margin: 0; 
    overflow: hidden; 
}
img{
    max-width: 100%;
    height: auto;
}
#ar-button{
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 6rem;    
}
#ar-button img {
    width: 6rem;
}
.QRcode{
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 5vw;
    top: 18vh;
    display: none;
    border: 2px solid #DC2A1B;
    background-color: #ffff;
    padding: 0.5rem;
    max-width: 18rem;
}
.QRcode h1{
    font-weight: bold;
    color: #DC2A1B;
    text-align: center;
    font-size: 1.9rem;
}
.QRcode p{
    margin: 0.8rem 0;
    color: #DC2A1B;
    font-size: 1.5rem;
}
.QRcode img{
    width: 85%;
}
.closeQRcode{
    display: flex;
    justify-content: center;
    background-color: rgba(202, 202, 202, 0.952);
    text-decoration: none;
    padding: .4rem 2rem;
    z-index: 1;
    width: 4rem;
    border-radius: 7.7px;
    color:#DC2A1B;
    margin: auto;
    margin-top: 0.3rem;
    font-size: 1.5rem;
}

.loadingContent {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #DC2A1B;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.loading {
    width: 270px;
    height: 8px;
    border-radius: 6.5px;
    background-color: #fff;
    margin-bottom: 11px;
}

.loading .barBlue {
    position: absolute;
    height: 8px;
    width: 0;
    border-radius: 6.5px;
    background-color: #DC2A1B;
}
#scooter{
    height: 100vh;
    width:100vw;
}
/* Extra small devices (phones, 576px and down) */
@media only screen and (max-width: 576px) {
    #ar-button,
    #ar-button img{
        width: 4rem;
    }
    .QRcode{
        left: 11vw;
        top: 21vh;
    }

}