* {
    box-sizing: border-box;
    margin: 0;
}


body {
    font-family: Outfit;
    background-color: #D5E1EF;
    margin: 0;
    height: 100vh;
    display: grid;
    place-items: center;

}

.card {
    background-color: #FFFFFF;
    height: 499px;
    width: 320px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    gap: 24px;
}

img {
    width: 288px;
    border-radius: 10px;
}

.text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-inline: 16px;
}

.bold {
    color: #1F314F;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0px;
    font-weight: 700;
}

.regular {
    color: #68778D;
    font-size: 15px;
    line-height: 140%;
    font-weight: 400;
}