* {
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body {
    background-color: #d5e1ef;
}

.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    height: 500px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 1rem 1rem 2.5rem 1rem;
    filter: drop-shadow(rgba(0, 0, 0, 0.0477) 0 25px 25px);
}
img {
    height: 18rem;
    width: 18rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}
.text h2 {
    color: #1f314f;
    font-size: 22px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 1rem;
}
.text p {
    color: #68778d;
    font-size: 1rem;
    letter-spacing: 0.19px;
    line-height: 140%;
    text-align: center;
}
