*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}

:root{
  --white: hsl(0, 0%, 100%);
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
}

body{
  font-family: 'Outfit', sans-serif;
  background-color: var(--slate-300);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: space-between;
  height: 100vh;
  text-align: center;
}


.qr-box{
  background-color: var(--white);
  width: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 3rem 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 3rem;
}

.qr-image-box{
  width: 100%;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
  margin-bottom: 1rem;
}

.text-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 6px;
}

.text-box > h1 {
  color: var(--slate-900);
  font-size: 1.3rem;
}

.qr-image-box > img {
  width: 100%;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -ms-border-radius: 18px;
  -o-border-radius: 18px;
}

p{
  margin: 1rem 0 0 0;
  font-size: 15px;
  color: var(--slate-500);
}

@media (max-width: 375px) {
  .qr-box {
    width: 90%;
  }


}
