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

body {
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    gap: 3.125rem;
    padding: 2.5rem 0.9375rem;
}

.container {
    background-color: hsl(0, 0%, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    max-width: 320px;
    width: 100%;
    padding: 1rem;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 1rem 0 hsla(0, 0%, 0%, 0.12);
}

.container img {
    width: 288px;
    height: auto;
    border-radius: 0.75rem;
}

.text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1.5rem;
}

.text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}

.text p {
    font-size: 0.9375rem;
    font-weight: 400;
    color: hsl(216, 15%, 48%);
}

.attribution {
    font-size: 0.9375rem;
    text-align: center;
}

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