body {
  background-color: #D5E1EF;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: 'Outfit';
}

.container {
  background-color: #FFFFFF;
  width: 320px; /* Fixed width */
  height: 499px;
  padding: 16px 16px 40px 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:24px;
}

.qr-code {
  width: calc(100% - 16px);;
  height: calc(100% - 16px);;
  border-radius: 10px;
  object-fit: cover;
}

.text-section{
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 16px;
  padding: 0 16px;
}

.title {
  color: #1F314F;
  font-size: 22px;
  letter-spacing: 0px;
  line-height: 120%;
  font-weight: bold;
  margin: 0px;
}

.text {
  color: #68778D;
  font-size: 15px;
  letter-spacing: 0.2px;
  line-height: 140%;
  margin: 0px;
}






