
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Outfit", serif;
}
:root{
    --main-bg: hsl(0, 0%, 100%);
    --body-bg: hsl(212, 45%, 89%);
    --heading :hsl(218, 44%, 22%);
    --text: hsl(216, 15%, 48%);

}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background-color: var(--body-bg);

}
.main{
    background-color:var(--main-bg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-content: center;
    justify-content: center;
    width: 32%;
    border-radius: 15px;
    min-width: 320px;
}
.main img{
    width: 90%;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}
.main h2{
    color: var(--heading);
    margin-bottom: 1rem;
    font-weight: 700;
}
.main p {
    text-align: center;
    color: var(--text);
    line-height: 1.5;
}
