/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

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

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.card {
    background-color: hsl(0, 0%, 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

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

h2 {
    font-size: 15px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}

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