@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    
}

body{
    background: hsl(212, 45%, 89%);
    font-family: "Outfit", serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

article{
    background-color: hsl(0, 0%, 100%);
    padding: 20px;
    max-width: 300px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

article img{
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    margin-bottom: 20px;
}

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

p{
    font-weight: 400;
    font-size: 0.9rem;
    color: hsl(216, 15%, 48%)
}


 