#square {
    width: 100px;
    height: 100px;
    background-image: url("Shoe_bench.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#wega {
    width: 150px;
    height: 150px;
    background-image: url("wega.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3; /* Ensure it's above other elements */
}



body {
    overflow: hidden;
    background-color: black;
    background-repeat: repeat;
    background-size: 200px 200px;
    background-position: 0px 0px;
}

#tile-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.tile {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid black;
}
