.page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(212, 45%, 89%);
}
.card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 300px;
    margin: 1.5rem;
    padding: 1rem;
    border-radius: 1rem;
    background-color: white;
}
img {
    width: 100%;
    border-radius: 1rem;
}
.card-header {
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 1rem 0 1rem;
    color: hsl(218, 44%, 22%);
}
.card-content {
    font-weight: 400;
    text-align: center;
    margin: 2rem 1rem;
    color: hsl(216, 15%, 48%);
}