
*, ::before, ::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
  background-color: #D6E2F0;

}

.container {
  /* position: relative; */
  height: 100vh;
  display: flex;
  flex-direction: column;
  min-width: 500px;
  justify-content: center;
  align-items: center;
}

.card {
  margin: auto;
  width: 320px;
  background-color: white;
  border-radius: 18px;
  /* position: absolute;
  top: 50%;
  left: 50%; */
  /* transform: translate(-50%, -50%); */
}

.qrcode {
  padding: 16px;
}

.text {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.text > h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #1F3251;
  text-align: center;
  font-size: 20px;
  margin: 12px 32px 0 32px;
}
.text > p {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #7B879D;
  font-size: 15px;
  margin: 15px 32px 39px 32px;
}


#qrcodeimg {
  width: 100%;
  border-radius: 8px;
}
