/* Default stylesheet and tools */
body,
html {
	background: rgb(245, 245, 245);
	padding: 0;
	margin: 0;
	overflow: hidden;
	display: flex;
    justify-content: center; 
    align-items: center; 
}

#container {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
    justify-content: center; 
    align-items: center; 
	overflow: auto;
}

#container-mouse {
	position: fixed;
	height: 50px;
	width: 50px;
	top: -100px;
	left: -100px;
	background: rgb(240, 240, 240);
	-webkit-box-shadow: 4px 2px 15px -3px rgba(0, 0, 0, 0.31);
	box-shadow: 4px 2px 15px -3px rgba(0, 0, 0, 0.31);
	border-radius: 50%;
	transform-origin: center center;
	transform: translate(-50%, -50%);
	cursor: none;
	z-index: 100;
}

#tools {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	display: flex;
	padding: 10px;
	transition: all 700ms ease-in-out;
	transform: translateY(200%);
}

#tools.active {
	transform: translateY(0%);
}

#tools>div {
	padding: 5px 6px 5px 6px;
	background-color: rgb(255, 255, 255);
	text-transform: uppercase;
}

#tools>div>p {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: 500;
	font-size: 11px;
	padding: 0;
	margin: 0;
	line-height: 100%;
}

#tools>div>p:nth-child(2) {
	opacity: 0.2;
}

#tools>div:nth-child(1) {
	min-width: 200px;
	color: rgb(255, 255, 255);
	background-color: rgb(84, 39, 234);
}

#tools>div:nth-child(2) {
	min-width: 200px;
	background-color: rgb(200, 200, 200);
	color: rgb(100, 100, 100);
}

#tools>div:nth-child(3) {
	min-width: 200px;
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
}

#container-image {
	width: 100%;
	height: 100%;
}

#container-image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width:960px) { 
	#tools {
		display: block;
		width: calc(100% - 20px);
	}
}
