body {
  background-image: url('/images/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  color: #333;
  font-family: "UoqMunThenKhung", serif;
}
@media (max-width: 575.98px) {
      .col-xs-6 {
        flex: 0 0 auto;
        width: 50%;
      }
    }

.dish-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  padding: 0px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.dish-title {
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 15px;
  color: #2c2c2c;
}

.dish-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.name{
  color: #000;
  text-shadow: 1px 1px 4px #fff;
  font-weight: 600;
}
.mainad{
  font-size: 1.5em;
  font-weight: 300;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}
.zag{
    color:#000;
    text-shadow: 1px 1px 4px #fff;
}
.white-link {
      color: white;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: 600;
      text-shadow: 1px 1px #000;
    }
    
footer {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 10px;
  margin-top: 40px;
}

footer a {
  color: #007bff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
