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

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

main {
    background-color: hsl(0, 0%, 100%);
    padding: 16px;
    border-radius: 20px;
    text-align: center;
    width: 310px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 22px;
    color: hsl(218, 44%, 22%);
    padding: 15px 10px;
}

p {
    font-size: 15px;
    color: hsl(220, 15%, 48%);
    padding: 0px 10px 30px 10px;
    line-height: 1.5;
}

img {
    width: 100%;
    border-radius: 10px;
}
