body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
	margin-bottom: 20px;
}
nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline;
    margin: 0 1rem;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
main {
    padding: 2rem;
}
.center-content {
	text-align: center;
}
.toggle-heading {
	cursor: pointer;
	background-color: #f2f2f2;
	padding: 10px;
	border: 1px solid #ccc;
	margin-top: 10px;
}
.code-field {
	display: none;
	padding: 10px;
	background-color: #333;
	color: #fff;
	border-radius: 5px;
	position: relative;
}
.copy-button {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #4CAF50;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
}
.code-field pre {
	margin: 0;
	white-space: pre-wrap;
	word-break: break-all;
}
.center-content {
	text-align: center;
}
h1 {
	margin: 0;
	padding-bottom: 10px;
}
p {
	margin: 0;
	padding-bottom: 10px;
}
hr {
	width: 50%;
	margin: 20px auto;
	border: 1px solid #ccc;
}

h1 {
	margin-bottom: 20px;
}
textarea {
	width: 90%;
	max-width: 90%;
	font-family: monospace;
	margin-left: 20px;
	margin-right: 20px;
}
button {
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	margin-bottom: 10px;
	margin-left: 20px;
}
.convert-button {
	background-color: #4CAF50;
	color: white;
}
.copy-button {
	background-color: #008CBA;
	color: white;
	position: relative;
	float: right;
	position: absolute;
	top: 0;
	right: 9%;
	padding: 5px 10px;
	font-size: 14px;
}
.result-container {
	position: relative;
}