body {
    background-color: #D5E1EF;
    font-family: "Outfit", sans-serif;
    margin: 0px;
    padding: 0px;
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-component {
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 16px 16px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0476518);
}

.card-component img {
    width: 288px;
    height: 288px;
    border-radius: 10px;
}

.card-component h1 {
    color: #1F314F;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.card-component p {
    color: #68778D;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0.2px;
    margin: 0px;
}