@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --White: hsl(0, 0%, 100%);
    --Light-gray: hsl(212, 45%, 89%);
    --Grayish-blue: hsl(220, 15%, 55%);
    --Dark-blue: hsl(218, 44%, 22%);
}
html,body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
body{
    background-color: var(--Light-gray);
    font-family: "Outfit", sans-serif;
}
/* main */
main{
    max-width: 320px;
    min-height: 50%;
    text-align: center;
    padding: 1rem;
    background-color: var(--white);
    border-radius: 8px;
}
img{
    width: 100%;
    height: 18rem;
    border-radius: 8px;
}
h2{ 
    padding: 1rem 0;
     font-weight: 700;
 }
 p{
    font-weight: 400;
    font-size: 15px;
    color: var(--Grayish-blue);
    width: 89%;
    margin: 0  auto;
 }