.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 20px;
}
.menu-item:hover .overlay {
    opacity: 1;
}
.menu-item {
    position: relative;
    overflow: hidden;
}
.menu-item img {
    transition: transform 0.3s ease;
}
.menu-item:hover img{
    transform: scale(1.05);
}