@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root{
--White: hsl(0, 0%, 100%);
--slightly-Slate: hsl(212, 45%, 89%);
--middly-Slate: hsl(216, 15%, 48%);
--very-Slate: hsl(218, 44%, 22%);
}

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

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--slightly-Slate);
    font-family: 'outfit',sans-serif;
    font-size: 17px;
}

.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--White);
    width: 375px;
    padding: 20px;
    border-radius: 20px;
    padding-bottom: 50px;
}

.body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
.image img{
    width: 100%;
    border-radius: 20px;
}