* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 .container{
    height: 100vh;
    width: 100vw;
    background-image: url("https://images.unsplash.com/photo-1565638427888-268b7714225e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80");
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .parent{
   height: 23rem;
   width: 20rem;
   background-color: whitesmoke; 
   display: flex;
   justify-content: center;
   gap: 2rem;
   flex-direction: column;
   border-radius: 5px;
   padding: 2rem;
   /* box-shadow: -10px 10px 10px coral; */
   /* used a box shadow generator */
   box-shadow: 21px 17px 5px -5px rgba(167,40,40,0.63);
-webkit-box-shadow: 21px 17px 5px -5px rgba(167,40,40,0.63);
-moz-box-shadow: 21px 17px 5px -5px rgba(167,40,40,0.63);
 }
 .title{
    display: flex;
    flex-direction: column;
    gap: 0.42rem;
 }
 input{
    padding: 0.5rem;
    width: 100%;
 }
.linkData{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
 .send{
    width: 100%;
    background-color: blue;
    color: white;
    padding: 0.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
 }
 .QR_code{
    border: 2px dotted red ;
    height: 8rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;

}
 .QR_code img{
    height:6rem ;
    width: 6rem;
    object-fit: contain;
 }
 