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

body {
    min-height: 100vh;
    width: 100%;
    font-family: "Outfit" , serif;
    background-color: #D1E5EF; /* Slate-300.*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 320px;
    min-height: 499px;
    border-radius: 20px;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */
}

.card img {
    max-width: 288px;
    width: 90%;
    height: auto;
    margin: 10px;
    border-radius: 10px;
}

.card h1 {
    height: auto;
    color:#1F314F; /* Slate-900 */
    font-size: 22px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: 0px;
    padding: 15px 20px 20px;
}

.card p {
    height: auto;
    font-size: 15px;
    color:#66778D; /* Slate-500*/
    line-height: 140%;
    font-weight: 400;
    letter-spacing: 0.2px;
    padding: 0px 20px 0px;
}

.attribution {
    /* position: absolute;
    top: 95%; */
    font-size: 11px;
    text-align: center;
    padding: 10px;
}


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