/* style.css */
 body {
	 font-family: Arial, sans-serif;
	 font-size: 14px;
	 line-height: 1.5;
	 background-color: #222;
	 color: white;
}
 h1 {
	 font-size: 20px;
	 margin-bottom: 20px;
	 text-align: center;
}
a {
	 color: inherit;
}
 form {
	 background-color: #000;
	 padding: 20px;
	 border-radius: 4px;
	 text-align: center;
	 margin-bottom: 20px;
}
 label {
	 display: block;
	 margin-bottom: 10px;
	 font-weight: bold;
	 color: white;
}
 input[type="text"] {
	 width: 100%;
	 padding: 10px;
	 border-radius: 4px;
	 border: 1px solid #ccc;
	 box-sizing: border-box;
	 margin-bottom: 20px;
	 background-color: #333;
	 color: white;
}
 input[type="submit"] {
	 background-color: #0073aa;
	 color: #fff;
	 padding: 10px 20px;
	 border: none;
	 border-radius: 4px;
	 cursor: pointer;
	 font-size: 16px;
}
 input[type="submit"]:hover {
	 background-color: #005c8c;
}
 .result {
	 margin-top: 20px;
	 padding: 20px;
	 background-color: #222;
	 border-radius: 4px;
	 overflow: auto;
}
 .result pre {
	 font-family: monospace;
	 font-size: 12px;
	 margin: 0;
	 padding: 0;
	 white-space: pre-wrap;
	 word-wrap: break-word;
	 color: white;
}
 @media (max-width: 768px) {
	 h1 {
		 font-size: 24px;
	}
	 input[type="text"] {
		 font-size: 14px;
	}
	 input[type="submit"] {
		 font-size: 14px;
		 padding: 8px 16px;
	}
	 .result pre {
		 font-size: 10px;
	}
}
