/* -------------------- */
/* Reset and base styles */
/* -------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* -------------------- */
/*      Layout          */
/* -------------------- */

body {
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    background-color: hsl(0, 0%, 100%);
    border-radius: 15px;
    padding: 16px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.container img {
    width: 100%;
    border-radius: 10px;
}


/* -------------------- */
/*      Typography      */
/* -------------------- */

.heading {
    margin-top: 24px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    width: 100%;

}

.paragraph {
    font-size: 15px;
    line-height: 1.4;
    color: hsl(216, 15%, 48%);
    text-align: center;

    max-width: 256px;
    margin: 16px auto 0;

}

.attribution {
    font-size: 11px;
    text-align: center;
    margin-top: 20px;
}

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


/* -------------------- */
/*   Responsive Design  */
/* -------------------- */

@media (max-width: 375px) {
    .container {
        padding: 16px 16px 40px 16px;
    }
}