/*:root{-
--White: hsl(0, 0%, 100%);

--300: hsl(212, 45%, 89%);
--500: hsl(216, 15%, 48%);
--900: hsl(218, 44%, 22%);
}
*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
body{ 
    min-height: 100vh;
    display: grid;
    font-size: 15px;
    place-items: center ;
    background-color:hsl(216, 15%, 48%);
}
.container{
    width: 18.5rem;
    border-radius: 1rem;
    background-color: white;
    padding: 1rem 1rem 2rem;

}
.code-QR img{
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}
.content{
    width: 100%;
    height:100%;
    text-align: center;

   
}

.content h2{
    font-family:sans-serif ;
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    color:hsl(218, 44%, 22%);
}
.content p{
    font-weight: 400;
    color: grey;
    font-size: 15px;
}

