@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;700;800&display=swap');



html, body {
  font-family: 'Catamaran';
  background: #faffd4;
  width: 100%;
  min-height: 100vh;
}

h1 {
  font-size: 6rem;
}
h6 {
  font-size: 2rem;
}


.main {
  text-align: center;
  
  width: 95vw;
  
  margin-left: auto;
  margin-right: auto;

  padding-top: 5rem;
}

.btn-div {
  width: 100%;
  display: block;
}

.btn-start {
  display: block;
  min-width: 75vw;
  min-height: 140px;
  font-size: 4rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

#scan {
  /*display: none;*/
}

.contact {
  position: fixed;
  bottom: 3rem;
  width: 100%;
  left: 0;
  font-size: 2rem;
}


/******************************/
#results {
  display: block;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

#results > div {
  width: 100%;
  text-align: center;
  line-height: 24px;
  margin-left: auto;
  margin-right: auto;
}



video, canvas {
  border: 2px solid rgba(255, 255, 255, 1);
  
  /*background: #faffd4;*/
  /*background-image: url('https://1folds.com/assets/img/favicon.png');
  background-position: center;
  background-size: 36px;*/

  height: 198px;
  width: 100%;
  min-height: 50vh;
  border-radius: 15px;
}

.note {
  display: none;
  margin-top: 4rem;
  border: grey 1px solid;
  border-radius: 10px;
}


@media all and (min-width: 1367px) {
  #results,
  video, canvas {
    display: none;
  }

  .note {
    display: block;
  }
}