html, body {
	height: 100%;
	margin: 0;
	padding: 0;
}

#color {
	height: 100%;
	background-color: black;
	transition: background-color 1s ease-in-out;
}

#hex {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 48px;
	color: white;
	z-index: 1;
}

#colorButton {
	position: fixed;
	bottom: calc(33.33% + 20px);
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 10px;
	background-color: white;
	color: black;
	z-index: 2;
}
