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



body {
    background-color: hsl(212, 45%, 89%);
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
    /* جلوگیری از تغییر اندازه فونت در Safari */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.box {
    background-color: hsl(0, 0%, 100%);
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;

}

.card {
    /* background-color: bisque; */
    width: auto;
    margin: 15px;
    display: flex;
    align-items: center;
    flex-direction: column;

}


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

p {
    /* width: 120px; */
    /* height: 150px; */
    text-align: center;
}

.title {
    margin: 20px 0;
    font-weight: 700;
}

.paragraph {
    font-weight: 400;
    margin-bottom: 10px;
    color: rgb(166, 157, 157);
}




@media (max-width: 768px) {
    .box {
        width: 300px !important;
    }
}