/*Reset CSS*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
}
.card{
    background: white;
    width: 300px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.card img {
    width: 100%;
    border-radius: 10px;
}
.card h2 {
    font-size: 18px;
    margin: 15px 0;
    color: #333;
}
.card p {
    font-size: 14px;
    color: hsl(216, 15%, 48%);
} 
