@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--lightGrey-clr);
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-size: 15px;
}

:root {
    /* -- Colors */
    --white-clr: hsl(0, 0%, 100%);
    --lightGrey-clr: hsl(212, 45%, 89%);
    --grayishBlue-clr: hsl(220, 15%, 55%);
    --darkBlue-clr: hsl(218, 44%, 22%);
}

.container {
    max-height: 100vh; /* Update to 100vh */
    margin: 0 auto;
    display: flex; /* Add display:flex */
    justify-content: center; /* Center content horizontally */
}

.card {
    background-color: var(--white-clr);
    padding: 15px;
    text-align: center;
    border-radius: 17px;
    text-align: center;
    margin: 0 1rem;
}

.card img {
    width: 100%;
    border-radius: 12px;
}

.text {
    padding: 22px 10px;
}

.text h2 {
    color: var(--darkBlue-clr);
    padding-bottom: 15px;
}
