.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
}

.qrContainer {
  width: 200px;
  height: 200px;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  /* position: fixed;  */
  margin-top: 50px;
  margin-bottom: 50px;

  border: 10px solid white;
}

.koda {
  width: 200px;
  height: 200px;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  /* position: fixed;  */
}

body {
  background: linear-gradient(54.83deg, #2d9e82 0, #0b4930 100%);
}

.timer {
  width: -moz-fit-content; /* Firefox Android requires -moz- prefix */
  width: fit-content;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 3em;
  font-size: 1em;
  /* background-color: rgba(255, 255, 255,1); */
  color: white;
}

.knof {
  margin-top: 2em;
  margin-bottom: 2em;
  background-color: white;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 2em;
  padding-right: 2em;
  border-radius: 3em;
}

#log {
  padding-top: calc(100vh - (300px + 6em + 9em) + 3em); /* Always below initial viewport */
}

.hidden {
  color: gray;
}
.no {
  display: none;
}

.loader {
  border: 0.5em solid #f3f3f3; /* Light grey */
  border-top: 0.5em solid #e0144c; /* Blue */
  border-radius: 50%;
  width: 2em;
  height: 2em;
  animation: spin 1.5s cubic-bezier(.46,.18,.17,.74) infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 