.tiles-container {

    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    
}

.tile {
    flex: 1 0 400px;
    max-width: 400px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.tile:hover {
    transform: scale(1.05);
}


@media only screen and (max-width: 600px) {
  .tile {
    max-width: 95%;
  }
.tile:hover {
    transform: scale(1.00);
}