@font-face {
    font-family: 'Outfit' , sans-serif;
    src: url('../fonts/Outfit/Outfit-VariableFont_wght.ttf');
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Outfit' , sans-serif;
}
.main-section{
    width: 100%;
   
    height: 100vh;
    background-color: #d5e1ef;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  


}
.inner-section-qr-code{
    width: 100%;
    max-width: 360px;
    background-color: #fff;
   padding: 16px 16px;
   border-radius: 10px;

}
.inner-for-image img {
    border-radius: 10px;
}
.inner-for-content{
    text-align: center;
    padding-block: 24px;
    padding-inline: 16px;
}
.inner-for-content h3{
    font-size: 20px;
    line-height: 1.5rem;
    font-weight: 900;
    color: hsl(218, 44%, 22%);
}
.inner-for-content p{
    font-size: 16px;
    line-height: 1.5rem;
    font-weight: 500;
    color: hsl(216, 15%, 48%);
    padding-block: 16px 0;
}
.attribution {
    font-size: 11px;
    /* text-align: center; */
  }
  .attribution a {
    color: hsl(228, 45%, 44%);
  }
  @media only screen and (max-width:767px){
    .inner-for-content {
    
        padding-block: 16px;
        padding-inline: 16px;
    }
    .inner-for-content h3 {
        font-size: 18px;
        line-height: 1.2rem;
      
    }
    .inner-for-content p {
        font-size: 14px;
        line-height: 1.2rem;
        padding-block: 14px 0;
    }
    .inner-section-qr-code {
        margin: 20px;
    }
  }