*{
    box-sizing: border-box;
}

body{
    background-color: hsl(212, 45%, 89%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    
}

.card{
    border-radius: 20px;
    background-color: hsl(0, 0%, 100%);
    width: 320px;
}

.image{
    width: 300px;
    height: 300px;
    margin: 10px;
    border-radius: 10px;
}

.text{
    margin: 20px;
    text-align: center;
}

p {
    font-size: 15px;
    font-weight: 400px;
    color: hsl(216, 15%, 48%);
}

.card-title{ 
    font-size: 20px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}



