:root {
    --slate-900: rgb(31, 49, 79);
    --slate-500: rgb(104, 119, 141);
    --slate-300: rgb(213, 225, 239);
}

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

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

.card {
    background: white;
    border-radius: 20px;
    padding: 16px;
    width: 320px;
    min-height: 499px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
}

.card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.card__content {
    padding: 24px 16px 0px;
}

.card__title {
    color: var(--slate-900);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0px;
    margin-bottom: 16px;
}

.card__description {
    color: var(--slate-500);
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

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

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