body {
    margin: 0;
    padding: 20px;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.tiles-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
}

.tile {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.tile:hover {
    transform: scale(1.05);
    border-color: #666;
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
