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

body {
  background-color: hsl(212, 45%, 89%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 16px 40px;
  gap: 24px;
  width: 320px;
  height: 499px;
  background: #ffffff;
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0476518);
  border-radius: 20px;
}

.image-container {
  width: 288px;
  height: 288px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.image-container img {
  width: 100%;
  height: 100%;
}

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

.text-container h1 {
  font-weight: 700;
  font-size: 22px;
  color: hsl(218, 44%, 22%);
  flex-grow: 0;
}

.text-container p {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: hsl(216, 15%, 48%);
  flex-grow: 0;
}
