@import url("https://fonts.googleapis.com/css2?family=SUSE:wght@100..800&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "SUSE", sans-serif;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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

.title {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

#qrcode {
  display: flex;
  justify-content: center;
}

#qrcode img {
  height: 300px;
  width: 300px;
}

#status {
  display: flex;
  justify-content: center;
  margin-top: 0.8em;
}
