body {
    background: url(../img/canteenBg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.titleSection {
    text-align: center;
    font-family: var(--fonts);
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(5, 5, 5, 0.8);
}
.titleSection::after {
    content: "🔪";
}
.titleSection::before {
    content: "🍽️";
}
.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
img {
    border-radius: 0;
    width: 250px;
}
.all {
    padding: 20px;
}
.all .titleSection {
    color: var(--secondary);
}
.all .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 100px;
}
.all .cards .card {
    height: 175px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover !important;
    background-position: center !important;
    color: rgb(0, 255, 0);
    font-family: var(--fonts);
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
}
.all .cards .card:hover {
    transform: scale(1.1);
    transition: all 0.5s ease;
}
.all .cards .card img {
    border-radius: 0;
}
.all .cards .Al_Anba_Bishoy {
    background: url(../img/Al_Anba_Bishoy.jpeg);
}
.all .cards .Al_Malak {
    background: url(../img/Al_Malak.jpg);
}
.all .cards .Mr_Gerges {
    background: url(../img/Mr_Gerges.jpg);
}

@media screen and (max-width: 768px) {
    .images .img img {
        width: 100%;
    }
    .all .cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .all .cards .card {
        height: 150px;
        font-size: 1rem;
    }
    .titleSection {
        font-size: 2rem;
    }
    .images img {
        margin: 20px auto;
        width: 300px;
    }
}