@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: hsl(212, 45%, 89%);
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400, 700;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    margin-top: 15rem;
    padding: 1rem;
    padding-bottom: 1.8rem;
    min-height: 500px;
    border-radius: 1rem;
    box-shadow: 1px 4px 20px 0px rgba(0, 0, 0,0.3);
}

main img {
    width: 98%;
    max-height: 370px;
    border-radius: 1rem;
}

main h3 {
    font-size: 1.8rem;
    font-weight: bold;
    width: 90%;
    color: hsl(218, 44%, 22%);
    text-align: center;
    line-height: 120%;
}

main p {
    font-size: 1.3rem;
    width: 88%;
    color: hsl(216, 15%, 48%);
    text-align: center;
    line-height: 140%;
    letter-spacing: 0.2px;
    margin-top: 0;
}


