.start-tile {
    transition: transform 0.2s ease-in-out, background-color 0.2s;
    cursor: pointer;
    min-height: 120px;
}
.start-tile:hover {
    transform: scale(1.05); /* Kachel wird minimal größer */
    filter: brightness(90%); /* Kachel wird leicht dunkler beim Hover */
}