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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: hsl(212, 45%, 89%);

    font-family: 'Outfit', sans-serif;
}
main {
    max-width: 18rem;
    padding: .8rem;
    border-radius: 1rem;

    background-color: white;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
img {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 1rem;
}
.text-content {
    text-align: center;
}
p {
    color: hsl(216, 15%, 48%);
    
    font-size: 0.9375rem;
    font-weight: 400;
}
h1 {
    color: hsl(218, 44%, 22%);

    font-size: 1.3rem;
    font-weight: 700;
}
p, h1 {
    margin-bottom: 1rem;
}