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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;   
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(212, 45%, 89%);
}

main {
    padding: 1rem;
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;    
    width: 18rem;
    height: 28rem;
    border-radius: .6rem;
}

main img {
    max-height: 100%;
    border-radius: .6rem;
}

main h2 {
    color: hsl(218, 44%, 22%);
    font-size: 1.25rem;
    text-align: center;
}

main p {
    color: hsl(216, 15%, 48%);
    text-align: center;
    font-size: .9rem;
}