@import"https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap";body{box-sizing:border-box;font-family:Roboto,sans-serif;background-color:#1a1a1d;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:100vh;margin:0 1rem;padding:0}header{margin-bottom:20px;margin-left:20px;margin-right:20px;display:flex;flex-direction:column;width:calc(100% - 40px);max-width:1200px}.headerContent{display:flex;flex-direction:row;justify-content:space-around;align-items:center;padding-bottom:2rem}.headerTitle{color:#3fc;display:flex;justify-content:center;font-size:2.5rem;font-family:Orbitron,sans-serif;text-shadow:0 0 10px rgba(51,255,204,.7),0 0 20px rgba(51,255,204,.7)}#numberOfGames,#numberOfWins,#numberOfLosses{color:#3fc;font-family:Orbitron,sans-serif}#game{background-color:#2a2a2e;padding:20px;border-radius:10px;box-shadow:0 0 20px #00ffcc80;animation:neon-glow 1.5s ease-in-out infinite alternate}@keyframes neon-glow{0%{box-shadow:0 0 20px #00ffcc80,0 0 30px #00ffcc4d}to{box-shadow:0 0 30px #0fcc,0 0 50px #0fc9}}#board{border-collapse:collapse;display:flex;flex-direction:column;justify-content:space-between;align-items:center}#board td{width:60px;height:60px;border:solid 2px #33ffcc;background-color:#1a1a1d;position:relative;transition:background-color .3s}#board td:hover{background-color:#3fc}#startButton{display:block;padding:1rem;margin-bottom:4rem;border-radius:20px;background-color:#3fc;color:#1a1a1d;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease;font-family:Orbitron,sans-serif}#startButton:hover{transform:translateY(-3px);box-shadow:0 8px 15px #00ffcc80}#restartButton{display:block;padding:1rem;margin-bottom:4rem;border-radius:20px;background-color:#f06;color:#1a1a1d;cursor:pointer;transition:transform .3s ease,box-shadow .3s ease;font-family:Orbitron,sans-serif}#restartButton:hover{transform:translateY(-3px);box-shadow:0 8px 15px #ff006680}.piece{margin:5px;width:80%;height:80%;border-radius:50%;transition:transform .3s ease;position:absolute;top:0;left:0}#column-top td{border:dashed 1px #33ffcc;cursor:pointer;transition:background-color .3s}#column-top td:hover{background-color:#f06}#playerSetup{display:flex;justify-content:center;margin-top:1rem;color:#3fc}#playerSetup label{margin:0 1rem;font-family:Orbitron,sans-serif}#playerSetup input[type=color]{margin:0 1rem;cursor:pointer}#playerSetup input[type=checkbox]{margin:0 1rem;width:2rem;accent-color:#33ffcc;cursor:pointer}footer{margin-top:20px;color:#3fc;font-family:Orbitron,sans-serif;text-shadow:0 0 5px rgba(51,255,204,.7),0 0 10px rgba(51,255,204,.7)}
