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

body {
    background-color: hsl(212, 45%, 89%);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
}

.container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    padding: 20px; 
}

.card {
    width: 320px; 
    background-color: hsl(0, 0%, 100%); 
    border-radius: 20px; 
    padding: 16px; 
    text-align: center;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.05);
}

.card img {
    width: 100%;
    border-radius: 10px;
    display: block; 
}

.text-content {
    padding: 16px 12px 24px; 
}

.text-content h1 {
    font-size: 22px;
    font-weight: 700; 
    color: hsl(218, 44%, 22%); 
    line-height: 1.3;
    margin-bottom: 15px; 
}

.text-content p {
    font-size: 15px;
    font-weight: 400; 
    color: hsl(220, 15%, 55%); 
    line-height: 1.3;
    padding: 0 8px; 
}