* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 768px){
  .container {
       width: 750px;
      }  
   }
   @media (min-width: 992px){
     .container {
       width: 970px;
     }  
   }
   @media (min-width: 1200px){
     .container {
       width: 1170px;
     }  
    }
         body {
           font-family: "Outfit", sans-serif;
           background-color: #D5E1EF ;
           margin: 0;
       }
   @font-face {
     font-family: 'Outfit';
     src: url('/Fonts/Outfit/Outfit-VariableFont_wght.ttf');
    }

   .qr-code {
       display: flex;
       height: 100vh;
       align-items: center;
   }
   .qr-code .container {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #ffffff;
    width: 275px;
    height: 420px;
    margin: 50% auto;
    border-radius: 15px;
  
     }
     .qr-code .container .iamge {
        display: flex;
        justify-content: center;
        margin: 10px 10px;
    }
     
     .qr-code .container .iamge  img {
        width: 250px;
        border-radius: 10px;
    }
    .qr-code .container .text {
        text-align: center;
    }
    .qr-code .container .text h3{
        color: hsl(218, 44%, 22%);
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: -5px;
        
    }
    .qr-code .container .text p 
    {
        font-size: 15px;
        color: hsl(216, 15%, 48%);
        line-height: 1.3;
    }
    
  