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

/* css custom properties */
:root {
    --main-bg-color:#D5E1EF;
    --card-bg-color:#FFF;
    --card-and-image-width:375px;
    --font-family: 'Outfit', sans-serif ;
    --h1-font-size: 1.27rem;
    --p-font-size: 0.9375rem;
    --p-color: hsl(220, 15%, 55%);

}

/* Set the font family, sizes and text alignment */
h1, p {
    font-family: var(--font-family);
    text-align: center;
}

h1 {
    font-size: var(--h1-font-size);
}

p {
    font-size: var(--p-font-size);
    color: var(--p-color);
}

img  {
    width: 100%;
    border-radius: 8px;
    width: var(--card-and-image-width);
    height: auto;
}

body {
    background-color: var(--main-bg-color);
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--card-bg-color);
    width: var(--card-and-image-width);
    border-radius: 15px;
    padding: 15px;
    margin: auto;
    margin-top: 0%;
}


