/* start varubal */
:root {
  --bodyColor: #d6e2f0ff;
  --White: #ffffff;
  --mainColor: #68778d;
  --secondryColor: hsl(218, 44%, 22%);
}
/* end variabel */
/* qr design */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--bodyColor);
  display: grid;
  place-items: center;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
}
html {
  font-size: 15px;
}
.qr-code {
  max-width: 320px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  text-align: center;
  overflow: hidden;
  padding: 16px 16px 40px 16px;
  box-shadow: 0 25px 25px 2px rgb(0 0 0 / 5%);

  background: var(--White);
  .image {
    margin-bottom: 24px;
    img {
      max-width: 288px;
      max-height: 288px;
      border-radius: 10px;
      -webkit-border-radius: 10px;
    }
  }
  .text {
    padding-left: 16px;
    padding-right: 16px;
    h1 {
      color: var(--secondryColor);
      font-weight: bold;
      font-size: 22px;
      margin: 0;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    p:last-of-type {
      color: var(--mainColor);
      font-weight: 400;
      font-size: 1rem;
      line-height: 1.4;
      margin: 0;
    }
  }
}
footer {
  font-size: 12px;
  text-align: center;
  position: absolute;
  bottom: 10px;
}
/* for foot becuase the apperance bad in mobile */
@media (max-width: 376px) {
  footer {
    font-size: 5px;
    text-align: center;
    position: absolute;
    bottom: 2px;
  }
}
