body {
    font-family: Arial, sans-serif;
	color: white;
    background-color: black;
    margin: 20px 20px 10px 0;
    padding: 20px; /* Optional: Add padding for better readability */
}

h1 {
    font-size: 24px; /* Adjust size */
    font-weight: bold; /* Bold text */
	margin-top: 48px;
    /* color: #2c3e50; Specific color for h1 */
}

h2 {
    font-size: 18px; /* Adjust size */
    font-weight: bold; /* Normal weight */
    /*color: #34495e;  Specific color for h2 */
    color: yellow;  /*Specific color for h2 */
	margin-top: 36px;
	margin-bottom: 6px; /* Adjust margin */
}

h3 {
    font-size: 1.5em; /* Adjust size */
    font-weight: normal; /* Normal weight */
    /*color: #7f8c8d;  Specific color for h3 */
	margin-top: 12px;
	margin-bottom: 4px; /* Adjust margin */
}

p {
    font-size: 1em;
}

a {
	text-decoration: none;
	color: #ff8840;
}
a:hover {
	text-decoration: underline;
}