@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Outfit", sans-serif;
  background-color: #7D889E;
}

.qrContainer {
  width: 320px; 
  height: 497px; 
  background: white; 
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.05); 
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 152px auto;
}

.qrCode {
  background: #2C7DFA; 
  border-radius: 10px;
  width: 288px;
  height: 288px;
  margin: 16px;
  overflow: hidden;
  position: relative;
}

#qr {
  width: 288px;
  height: 288px;
}

.qrInfo {
  width: 288px;
  height: 129px;
}

h1 {
  color: #1F314F;
  font-size: 22px;
  font-weight: 700;
  word-wrap: break-word;
  text-align: center;
}

p {
  color: #7D889E;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.19px;
  text-align: center;
  text-wrap: wrap;
  width: 256px;
  margin: 0 16px;
}