@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --white: hsl(0, 0%, 100%);
    --slate-300: hsl(212, 45%, 89%);
    --slate-500: hsl(216, 15%, 48%);
    --slate-700: hsl(228, 45%, 44%);
    --slate-900: hsl(218, 44%, 22%);
}

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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    background-color: var(--slate-300);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 320px;
    padding-block-start: 1rem;
    padding-block-end: 2.5rem;
    border-radius: 20px;
    background-color: var(--white);
}

.content {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 1rem;
    width: 90%;
}

.content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.text {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 1rem;
    width: 90%;
    text-align: center; 
}

.text h3 {
    color: var(--slate-900);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
}

.text p {
    width: 100%;
    max-width: 250px;
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0.013em;
}

.attribution {
    display: flex;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
}

.attribution a {
    color: var(--slate-700);
}