@font-face {
    font-family: myFirstFont;
    src: url(/font/Yekan_Regular-400.woff);
 }
 @font-face {
    font-family: myFirstFont;
    font-weight: 700;
    src: url(/font/Yekan_bold-700.woff);
 }
*{
    margin: 0;
    padding: 0;
}
html{
    font-family: 'myFirstFont' ,"myFirstFont";
}
body {
    background: #274c77;
    background: radial-gradient(circle, #27bcb8 0%, #274c77 100%);
}
header {
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 5;
    position: relative;
}
.image-header {
    width: 100%;
    height: 200px;
    background-image:url(dumbo-header-desktop.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -97px;
}

.continer {
    position: relative;
    width: 95%;
    display: flex;
    padding: 30px 5px 5px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    margin: 50px auto;
    background: #8f1616;
    border: 23px solid #ff5503;
    border-radius: 10px;
}
.continer::before {
    content: "";
    width: 100.7%;
    height: 100.7%;
    border: 10px dotted #fffb03;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
}

.box {
    position: relative;
    overflow: hidden;
    width: 33%;
    margin: 0.1%;
    border-radius: 5px;
    box-shadow: -3px 3px 10px #00000010;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: 60px 60px;
    background-image: linear-gradient(90deg, #920f11 25%, #b6191d 25%, #b6191d 50%, #920f11 50%, #920f11 75%, #b6191d 75%, #b6191d 100%);
    z-index: 1;
}
.image-box {
    position: relative;
    width: 350px;
    height: 350px;
    margin: -180px auto 10px;
    border: 20px solid #ff5503;
    border-radius: 100%;
    padding: 2px;
}
.image-box.footer {
    margin: 10px auto -180px;
}
.image-box.footer img {
    object-position: top;
}
.image-box::before {
    content: "";
    width: 103%;
    height: 103%;
    border: 10px dotted #fffb03;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    border-radius: 100%;
}
.image-box  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 300px;
    object-position: bottom;
    border: 5px solid red:
}
.box::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgb(251,97,63);
    background: radial-gradient(circle, rgb(215 38 42 / 90%) 0%, rgba(252,70,107,0) 120%);
}
.box-food {
    padding: 15px;
    width: 90%;
    height: 100%;
}
.food-info-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.food-header {
    margin-left: 10px;
    padding: 10px;
    width: 60%;
}

p.food-name {
    font-weight: 600;
    color: #fffe01;
    text-shadow: -1px 1px 4px #00000050;
    font-size: 18px;
}
span.food-decripshen {
    color: #fff;
    text-shadow: -1px 1px 4px #00000050;
}
.food-price {
    display: flex;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-shadow:-1px 1px 4px #00000050;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    width: 40%;
}
.food-price-title {
    margin: 0 15px;
    text-align: center;
}
.food-price span {
    color: #fef200;
    font-weight: 500;
}

h2.box-title {
    background: #fef200;
    background: radial-gradient(circle, #fef200 0%, #fa9e1f 100%);
    clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0% 100%, 5% 50%, 0% 0%);
    padding: 10px 60px;
    display: flex;
    justify-content: space-between;
    font-size: 30px;
}
h2.box-title span{
    color: #ed1c22;
}


@media screen and (max-width: 1200px) {
    .box {
        width: 49.8% !important;
    }
    .continer::before {
        width: 101.4%;
        height: 100.5%;
    }
}
@media screen and (max-width: 900px) {
    .continer {
        width: 85% !important;
    }
.box {
    width: 99% !important;
    margin-top: 10px;
}
    .image-header {
    background-image: url(dumbo-header.png) !important;
    }
    .continer::before {
        width: 102.4%;
        height: 100.2%;
    }
    .food-price {
        justify-content: space-between;
        
    }
    .box.img-footer {
        flex-direction: column-reverse;
    }
    .box.img-footer .image-box.footer {
        margin: -180px auto 10px;
    }
    .box.img-footer .image-box.footer img {
        object-position: bottom;
    }
}
@media screen and (max-width: 600px) {
.image-header {
    margin-bottom: -120px;
}
.image-box {
    position: relative;
    width: 270px;
    height: 270px;
}
h2.box-title {
    padding: 10px 20px;
    font-size: 20px;
}
.food-info-box {
    flex-direction: column;
}
.food-header,.food-price{
    width: 100%;
}
}
