/* Game Settings */ .game-container { position: absolute; top: 50vh; left: 50vw; transform: translate(-50%,-50%); height: 100vh; width: 100vw; background-color: lightgray; display: flex; align-items: center; justify-content: center; flex-direction: column; } .debug-info { display: none; } .continue-btn { border-radius: 10px; background-color: rgb(11, 93, 134); padding: 1em; color: white; margin-top: 5vh; } .flex-center { display: flex; align-items: center; justify-content: center; }