.tile-grid {
    --spacing: 0.42vw;
    display: grid;
    width: 100%;
    gap: var(--spacing);
    padding: var(--spacing);
    place-items: center center;
    background-color: rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.tile > img, .tile > svg {
    height: 2em !important;
}

.tile {
    cursor: pointer;
    background-color: white;
    transition: all 0.5s linear;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.tile:hover {
    width: calc(100% + var(--spacing) * 1.5);
    height: calc(100% + var(--spacing) * 1.5);
}