@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
body {
	background-color: #1a1a1a; /* Dark background */
	color: #ffffff; /* White text */
	font-family: "Press Start 2P", cursive; /* Pixelated font */
	font-size: 12px; /* Smaller font size for better pixelated effect */
	text-align: center;
	margin: 0;
	padding: 0;
	image-rendering: pixelated; /* Makes images pixelated */
	image-rendering: crisp-edges;
}
.container {
	display: inline-block;
	background-color: #333333;
	padding: 20px;
	border: 3px solid #ffd700; /* Gold border */
	border-radius: 10px;
	margin-top: 50px;
	max-width: 300px;
	width: 100%;
}

h1 {
	font-size: 16px; /* Reduced font size for better readability */
	color: #ffd700; /* Gold color */
	text-shadow: 1px 1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
		-1px -1px 0 #000; /* Pixelated shadow effect */
	margin: 0 0 20px 0;
}
label,
select,
input[type="number"],
button {
	display: block;
	margin: 10px auto;
}

select {
	height: 40px;
	font-size: 10px;
}

select,
input[type="number"],
button {
	width: 90%; /* Adjust width to fit better */
	padding: 10px;
	border: none;
	border-radius: 5px;
	background-color: #555555;
	color: #ffd700;
	font-family: "Press Start 2P", cursive;
	font-size: 14px; /* Increased font size */
	text-align: center;
	box-shadow: 0px 0px 5px #000000;
}
button {
	background-color: #ffd700;
	color: #000000;
	cursor: pointer;
	margin-top: 15px;
}
button:hover {
	background-color: #ffaa00;
}
#results {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	padding: 10px;
	background-color: #444444;
	border-radius: 5px;
	word-spacing: 2px;
	line-height: 1.6; /* Increased line height for better readability */
}
