* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'outfit', sans-serif;
    background-color: hsl(212, 45%, 89%);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 1rem;

}

.card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}


.card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
    margin-bottom: 0.75rem;
}

.card p {
    color: hsl(216, 15%, 48%);
    font-weight: 400;
    line-height: 1.4;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}