* {
    margin: 0;
    padding: 0;
}

/* Font Trick = 1rem = 10px */
html {
    font-size: 62.5%;
}

body {
    background-color: hsl(216, 15%, 48%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

main { 
    margin-top: 20rem;
    width: 250px;
    height: fit-content;
    padding: 1.7rem;
    padding-bottom: 4rem;

    background-color: white;
    border-radius: 1rem;
}

.bold {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 120%;
    margin: 1rem 0;
}

main p, figcaption {
    text-align: center;
}

.qr-code-img {
    max-width: 100%;
    border-radius: 10%;
}

footer { 
    font-size: 1.5rem; 
    text-align: center; 
}

footer a {
     color: hsl(228, 45%, 44%);
}