body {
    font-family: Outfit;
    margin: 0 15px 0 15px;
    background-color: hsl(212, 45%, 89%);
}

.qrcode-container {
    background-color: white;
    border-radius: 18px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 25px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qrcode-image {
    width: 290px;
    border-radius: 10px;
    margin-bottom: 8px;
}

h1 {
    font-size: 22px;
    text-align: center;
    width: 280px;
    margin-bottom: 0;
    color: hsl(218, 44%, 22%);
    line-height: 25px;
}

p {
    font-size: 15px;
    text-align: center;
    width: 250px;
    color: hsl(216, 15%, 48%);
    line-height: 22px;
}

.attribution {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

@media (max-width: 320px) {
    .qrcode-container {
        padding-left: 0;
        padding-right: 0;
    }

    .qrcode-image {
        width: 90%;
    }
}