body {
  margin: 0px;
}

#root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  margin-top: 80px;
  gap: 14px;
}

#title {
  font-size: 42px;
  margin: 0;
  line-height: 1;
  margin-bottom: 40px;
}

#qrcode {
  padding: 10px;
  background-color: #eee;
  border: 4px dashed transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
}

#hover-text {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: black;

  background-color: #96eadc;
  padding: 6px 20px;
  font-size: 26px;
  font-weight: bold;
  z-index: 10;
  cursor: default;
  white-space: nowrap;
  pointer-events: none;
}

#qrcode img {
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 300px;
}

#qrcode:hover {
  border-color: #96eadc;
}

#qrcode:hover img {
  opacity: 0.1;
}

#qrcode:hover #hover-text {
  display: block;
}

#qrcode.drag-over {
  border-color: #96eadc;
}

#qrcode.drag-over img {
  opacity: 0.1;
}

#qrcode.drag-over #hover-text {
  display: block;
}

#input {
  width: 300px;
  border: 4px solid #96eadc;
  padding: 10px;
  text-align: center;
  font-size: x-large;
}

#QA {
  margin: 40px 0 40px;
  padding: 0 30px;
  max-width: 500px;
  min-width: 328px;
  display: flex;
  flex-direction: column;
}

#QA h3 {
  margin: 1em 0 0em;
}

#QA p {
  margin: 0.5em 0;
}

#QA span {
  font-weight: bolder;
  color: #40e2c7;
  font-size: larger;
}

#gotit:hover{
  cursor: pointer;
  color: #96eadc;
}
