*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html, body{
    height: 100%;
    width: 100%;
}

.container{
   height: 100vh;
   width: 100vw;
   background-color:  hsl(218, 44%, 22%);
   display: flex;
   justify-content: center;
   align-items: center;
}

#qrContainer{
    min-height: 550px;
    padding: 20px;
    max-width: 25rem;
    width: 100%;
    height: 550px;
    background-color:  hsl(0, 0%, 100%);
    border-radius: 20px;
}

.qrCode img{
    height: 60%;
    width: 100%;
    border-radius: 20px;
}

.content {
    padding: 0 15px;
}


.content h2, p{
    text-align: center;
    margin-top: 20px;
}

.content p{
    font-size: 15px;
    color: hsl(216, 15%, 48%);
}

.attribution {
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
    color: black;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}
