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

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

div{
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    padding: 30px 20px;
    width: 300px;
    min-height: 480px; 
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

div img{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;    
}

div h2{
    font-weight: 700;
    font-size: 18px;
    color: hsl(218, 44%, 22%);
    margin-bottom: 10px;
}

div p{
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px;
    color: hsl(220, 15%, 55%);
}
