* {
    padding: 0px;
    margin: 0px;
   
}

.container {
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: white;
    height: 400px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 10px;
    display: flex;
    flex-direction: column;
}

.card p {
    font-size: 14px;
    font-weight: 400;
    color: hsl(216, 15%, 48%);
    text-align: center;
    padding: 5px 10px;
    margin: 0px 10px;
}

.card h2 {
    font-size: 19px;
    font-weight: 700;
    text-align: center;
    padding: 10px 10px;
    margin: 0px 10px;
}

.card img {
    display: block;
    margin: 10px;
    border-radius: 10px;
    height: 220px;
    align-self: center;
}

@media (max-width: 375px) {
    .card {
        height: 400px;
        width: 300px;
    }
}