/* style.css */

#startButton, #timer {
    position: absolute;
    top: 20px; /* Adjust if needed */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2em;
    color: white;
    z-index: 10;
}

#matrixCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Use vw/vh units to cover the entire viewport */
    height: 100vh;
}


body, html {
  background-color: black;
  overflow: hidden; /* Prevents scrolling */
}

#puzzleContainer {
	
    display: none;
}

.puzzlePiece {
    width: 100px;
    height: 100px;
    background-color: red; /* Example color */
    cursor: pointer; /* Indicates it's draggable */
}

.puzzleTarget {
    width: 100px;
    height: 100px;
    border: 2px dashed #666;
}