* {
    margin: 0px;
    padding: 0px;
}

body {
    background-color: hsl(212, 45%, 89%);
}

/* outside container to center the inside div */
.outside-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* inside div which contains the content */
.inside-div {
    background-color: hsl(0, 0%, 100%);
    width: 18rem;
    height: 28rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
}

/* Text styling for all text classes*/
.outside-div .text {
    margin: 0.8rem;
    text-align: center;
    font-family: "Outfit", sans-serif;
}

.heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}

.para {
    font-size: 1rem;
    font-weight: 400;
    color: hsl(216, 15%, 48%);
}

/* author */
.author > p {
    font-size: 0.8rem;
    padding-top: 1rem;
    > a {
        text-decoration: none;
    }
}

/* QR image styling */
.inside-div > img {
    width: 90%;
    border-radius: 10px;
    margin-top: 0.85rem;
}
