body {
	/*background-color: #010e1b;*/
	background-color: #010e1b;
	font-family: 'Fira Code', monospace;
	color: #c7fcfc;
	margin-top: 0;
	margin-left: 20;
}

.logo {
	width: 237px; /* 100% of the actual width */
	height: 291px; /* 100% of the actual height  */
}

ol li {
	margin-bottom: 20px; /* Adjust this value as needed */
}

.copy-button {
	cursor: pointer;
	background-color: #2d2d2d;
	color: yellow;
	margin: 0;
	padding: 6px;
	border: none; /* Optional: removes any default border */
}

.donate-button {
	cursor: pointer;
	display: inline-block;
	background-color: #1e90ff; /* Bright blue for visibility */
	color: #ffffff; /* White text */
	font-family: 'Fira Code', monospace;
	font-size: 16px;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
	box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

	.donate-button:hover {
		background-color: #ff4500; /* Highlighted orange on hover */
		transform: scale(1.05);
	}

	.donate-button:active {
		background-color: #ff6347; /* Slightly darker orange */
		transform: scale(0.95);
	}

