body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f0f0;
}

.header {
    background-color: #4CAF50;
    color: white;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 80%;
    max-width: 1200px;
    margin-top: 20px;
}

.menu-item {
    position: relative;
    width: 23%;
    max-width: 250px;
    min-width: 100px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item img {
    width: 100%;
    height: auto;
    display: block;
}

.menu-item .menu-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 1em;
}

.menu-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .menu-item {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .menu-item {
        width: 100%;
    }
}
