/* public/snake/style.css */
body {
  margin: 0;
  background: #000;
  color: #0f0;
  font-family: monospace;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
canvas {
  background: #111;
  border: 2px solid #0f0;
  max-width: 90vmin;
  max-height: 90vmin;
  aspect-ratio: 1;
}

#controls {
  display: none;
  margin-top: 1rem;
}

#controls button {
  font-size: 2rem;
  padding: 0.5rem 1rem;
  margin: 0.2rem;
  background: #000;
  color: #0f0;
  border: 1px solid #0f0;
  border-radius: 5px;
}

a {
  color: #00ff00;
  text-decoration: none;
}
a:hover {
  text-decoration: bold;
}

.container {
	aspect-ratio: 4 / 3;
	height: 100vh;
	width: 100vh;
	max-width: 100vw;
	overflow: auto;
	position: fixed;
	left: 0;                 /* przyklej do lewej */
	top: 0;
	background-color: #000;  /* t艂o terminalowe */
}

.section {
	padding: 0.5rem;
}
