.game {
	background: black;
	color: #00ff00;
	font-family: 'Courier New', Courier, monospace;
	padding: 20px;
}

#terminal {
	white-space: pre;
	border: 2px solid #00ff00;
	padding: 15px;
	height: 500px;
	overflow-y: auto;
	margin-bottom: 10px;
}

#input-area {
	display: flex;
	gap: 10px;
}

input[type="text"] {
	background: black;
	border: 2px solid #00ff00;
	color: #00ff00;
	font-family: 'Courier New', Courier, monospace;
	font-size: 16px;
	padding: 5px;
	width: 50px;
	text-transform: uppercase;
}

button {
	background: black;
	border: 2px solid #00ff00;
	color: #00ff00;
	font-family: 'Courier New', Courier, monospace;
	cursor: pointer;
	font-size: 16px;
	padding: 5px 15px;
}

button:hover {
	background: #004400;
}

@media only screen and (max-width: 480px) {
	#terminal {
		height: 300px;
	}
}


@media only screen and (min-width:481px) and (max-width: 767px) {
	#terminal {
		height: 350px;
	}
}

@media only screen and (min-width:768px) and (max-width: 991px) {
	#terminal {
		height: 400px;
	}
}

@media only screen and (min-width:992px) and (max-width: 1600px) {
	#terminal {
		height: 450px;
	}
}