.cuisine-previews-container {
    display: flex;
    justify-content: space-between;
}


.cuisine-previews {
    flex: 0 1 45%; /* Adjust the width as needed */
    padding: 5px;
    text-align: center;
    cursor: pointer;
    margin: 5px; /* Add spacing between the divs */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.cuisine-previews a {
    text-decoration: none; /* Remove underlines from the link */
}

.cuisine-previews:hover {
    background-color: #c1e2f9; /* Change background color on hover */
}