* {
    box-sizing: border-box;
}

body {
    background-color: #d6e2f0;
    font-family: "Outfit", sans-serif;
    text-align: center;
    margin: 18px;
}

.wrap {
    max-width: 310px;
    width: 100%;
    min-height: 94vh;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 15px;
}

.card {
    padding: max(10px, min(4vw, 16px));
    box-shadow: 0px 0px 10px 0px #dbdcdd;
    background-color: #ffffff;
    border-radius: 14px;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h1 {
    color: hsl(218, 44%, 22%);
    font-size: max(22px, min(24px, 1.8vw));
}

.card p {
    width: 90%;
    margin-inline: auto;
    opacity: .5;
    font-size: 15px;
}

.attribution {
    text-align: center;
}

.attribution a {
    text-decoration: none;
    color: #3379eb;
}

@media (max-width: 324px) {

    .card h1 {
        font-size: 20px;
    }

     .card p, .attribution  {
        font-size: 13px;
    }
}

