body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  .container {
    max-width: 960px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
  }
  
  .menu-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .menu-item {
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .menu-info {
    padding: 15px;
  }
  
  .menu-info h2 {
    margin-top: 0;
    color: #333;
  }
  
  .menu-info p {
    margin-bottom: 5px;
    color: #666;
  }

  .klikdisini {
    font-style: italic;
    text-align: center;
    font-size: medium;
    color: #666;
    margin-bottom: 20px;
  }

  .href {
    font-weight: bold;
  }

  .powered {
    text-align: center;
    font-size: small;
    color: #333;
  }
  
  @media (max-width: 768px) {
    .container {
      box-shadow: none;
      background-color: #f4f4f4;
      margin: auto;
    }

    .menu-item {
      width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 480px) {
    .menu-item {
      width: 100%;
    }
  }