*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    background: hsl(212, 45%, 89%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

main{
    width: 320px;
    font-family: "Outfit", sans-serif;
    height: auto;
    background: hsl(0, 0%, 100%);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    text-align: center;
}
img {
    width: 100%;
    border-radius: 10px;
}
div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 10px 20px;
}
h1 {
    color: hsl(218, 44%, 22%);
    font-weight: 700;
    font-size: 22px;

}
p {
    color: hsl(216, 15%, 48%);
    font-size: 15px;
    font-weight: 400;

}
