PARTY SPECIALS - DEAL/COMBO

  body { background-color: #121212; color: #ffffff; font-family: Arial, sans-serif; text-align: center; padding: 20px; } .menu { max-width: 800px; margin: auto; background: #1e1e1e; padding: 20px; border-radius: 10px; box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); animation: fadeIn 1.5s ease-in-out; } @keyframes fadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } } table { width: 100%; border-collapse: collapse; margin: 20px 0; background: #222; border-radius: 10px; overflow: hidden; animation: slideIn 1s ease-in-out; } @keyframes slideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } th, td { padding: 15px; border-bottom: 1px solid #444; text-align: left; } th { background: #ffcc00; color: #121212; } td { color: #fff; } .price { font-size: 1.2em; color: #ff5733; font-weight: bold; } h1 { color: #ff6600; font-weight: bold; animation: fadeIn 1.5s ease-in-out; } h2 { color: #ff6600; font-weight: bold; animation: fadeIn 1.5s ease-in-out; }