@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,900&display=swap');
header {
    position: fixed;
    top: 0;
    /* left: 20px; */
    background: rgba(255, 255, 255, 0.5);
    color: black;
    padding: 10px 16px;
    width: 100%;
}

#arjsDebugUIContainer {
    display: none;
}

body {
    margin : 0px;
    /*overflow: hidden;*/
    font-family:  Roboto;
}

footer {
    border-radius: 25px;
    position: fixed;
    bottom: 5px;
    left: 0px;
    width: 100%;
    color:black;
}

.container {
    background: rgba(255, 255, 255, 0.5);
  }
  
  @supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .container {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    }
  }