:root {
    --slate-300: hsl(212, 45%, 89%); 
    --slate-500: hsl(216, 15%, 48%); 
    --slate-900: hsl(218, 44%, 22%);
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit',sans-serif;
    background-color: var(--slate-300);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background-color: white;
    width: 320px;
   
    height: 499px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0477);

}

img{
    margin-top: 16px;
    margin-bottom: 24px;
    border-radius: 10px;
    width: 90%;
}

h1 {
    color: var(--slate-900);
    line-height: 120%;
    font-size: 22px;
    padding-left: 32px;
    padding-right: 32px;
}

p {
    color: var(--slate-500);
    font-size: 15px;
    line-height: 140%;
    padding-left: 32px;
    padding-right: 32px;
    margin-top: 16px;
}