body {
	height: 100vh;
	overflow: hidden;
}

.container {
	width: 600px;
	height: 600px;
	margin: 200px auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.color_picker {
	position: relative;
	overflow: hidden;
	width: 400px;
	height: 80px;
	border-radius: 20px;
	border: solid 3px white;
}

input[type='color'] {
	position: absolute;
	width: 480px;
	height: 100px;
	margin: -10px;
	cursor: pointer;
}

.color-hexa {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 15px;
	color: black;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}

#orientation {
	width: 120px;
	height: 50px;
	border-radius: 5px;
	border: solid 1px grey;
	margin-left: -260px;
	background-color: #e9e9ed;
	display: flex;
	align-items: center;
	justify-content : space-between;
	padding: 0 10px;
}

#inputRange {
	width: 400px;
	cursor: pointer;
}

.buttons {
	display: block;
}

button {
	display: inline-block;
	width: 140px;
	height: 50px;
	border-radius: 20px;
	border: solid 1px grey;
	margin: 20px 10px;
	cursor: pointer;
}