@font-face {
    font-family: 'Daniel';
    src: url('fonts/daniel.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f9f9f9;
  }
  
header {
    text-align: center;
    background: #ecf0f1;
    padding: 20px;
}
  
.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
  
.item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 280px;
}
  
.item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
  
.item-info {
    padding: 15px;
    font-family: 'Daniel', cursive;
}
  
.price {
    margin-top: 10px;
    font-weight: bold;
    color: #e67e22;
}
