.container1 {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease;
    max-width: 90%;
  }
  
  .container1:hover {
    transform: translateY(-10px);
  }
  
  .heading1 {
    font-size: 38px;
    color: #5d4037;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .typewriter-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .typewriter {
    color: #e65100;
    font-family: 'Pacifico', cursive;
    font-size: 38px;
    display: inline-block;
    position: relative;
  }
  
  .typewriter::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: #e65100;
    font-weight: bold;
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  .button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #ff7043;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Lobster', cursive;
    font-size: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .button:hover {
    background-color: #e64a19;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(230, 74, 25, 0.4);
  }
  
  .food-icon {
    font-size: 24px;
    margin: 0 8px;
    animation: bounce 2s infinite;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .icon1 { animation-delay: 0s; }
  .icon2 { animation-delay: 0.3s; }
  .icon3 { animation-delay: 0.6s; }
  .icon4 { animation-delay: 0.9s; }