
body{
    background-color: #D4A3C4;
}
.grid-container {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.grid-item {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}


#food {
    background-image: url('food2.jpg'); 
}

#music {
    background-image: url('music2.jpg'); 
}

#fashion {
    background-image: url('fashion2.jpg'); 
}

#cinema {
    background-image: url('cinema2.jpg'); 
}


.grid-item h2 {
    position: absolute;
    bottom: 20px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    font-family: 'Kumar One', cursive;
}


.grid-item:hover {
    transform: scale(1.05);
    z-index: 1;
}

.grid-item:hover ~ .grid-item {
    transform: translateX(20px);
}
