* {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	line-height: 1;
	text-decoration: none;
	font-size: 1em;
	font-style: normal;
	font-weight: normal;
	color: white;
	box-sizing: border-box;
	font-family: 'Forza Light';
}

@font-face {
	font-family: 'Forza Light';
	font-style: normal;
	font-weight: normal;
	src: local('Forza Light'), url('../assets/Forza-Light.woff') format('woff');
}

html {
	height: 100%;
	position: fixed;
}

body {
	height: 100%;
	display: flex;
	flex-direction: column;
}

header {
	background-color: yellow;
	text-align: center;
	padding: 15px;
}

main {
	background-color: #cccccc;
	flex: 1;
	display: flex;
	touch-action: none;
}

canvas {
	touch-action: none;
}

#settingsPanel {
	width: 100%;
	height: 40%;
	position: absolute;
	bottom: 0;
	left: -100%;
	background-color: rgba(10, 10, 10, 0.7);
	padding: 20px;
	font-variant: small-caps;
	transition: left 0.4s ease-in-out;
}

#settingsPanel #settingsTitleContainer #settingsTitle {
	text-align: center;
	font-size: 2.2rem;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 15px;
	border-bottom: 1px solid gray;
}

#settingsPanel #arrowLeft {
	position: absolute;
	top: 20px;
	right: 25px;
	width: 24px;
	height: 47px;
	cursor: pointer;
}

#settingsPanel #arrowLeft:hover path {
	stroke: #06A8D9;
}

#settingsPanel.active {
	left: 0;
	transition: left 0.4s ease-in-out;
	transition-delay: 0.4s;
}

#colorList {
	list-style-type: none;
	margin-top: 20px;
	text-align: center;
	white-space: nowrap;
	overflow: auto;
	height: 49px;
}

.color {
	display: inline-block;
	width: 45px;
	height: 45px;
	border-radius: 99px;
	border: 1px solid black;
	margin-left: 10px;
	margin-right: 10px;
	cursor: pointer;
}

.color.active {
	box-shadow: inset 0 0 10px #000000;
}

.colorHint {
	position: absolute;
	background-color: rgba(250, 250, 240, 0.8);
	color: black;
	padding: 5px;
	top: 90px;
	left: 0;
}

.settingsProperty {
	font-size: 1rem;
	font-weight: bold;
	margin-top: 15px;
	text-transform: uppercase;
}

footer {
	position: absolute;
	left: -100%;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0);
	text-align: center;
	transition: left 0.4s ease-in-out;
}

footer.active {
	left: 0;
	transition: left 0.4s ease-in-out;
	transition-delay: 0.4s;
}

footer div {
	width: 100%;
	height: 70px;
	margin-left: auto;
	margin-right: auto;
	background: url('../assets/logo.png') center center no-repeat rgba(60, 60, 60, 0.7);
}

.clickIcon {
	width: 500px;
	height: 500px;
	opacity: 0.8;
	border-radius: 999px;
	background-image: url('../assets/clickableicon.svg');
	background-size: contain;
	cursor: pointer;
	transition: opacity 0.5s ease-in-out;
}

.clickIcon.covered {
	opacity: 0.3;
	transition: opacity 0.5s ease-in-out;
}

.floatingTitle {
	position: absolute;
	text-align: center;
	height: 32px;
	font-size: 1.5rem;
	padding: 0.25rem 1rem;
	pointer-events: none;
	background-color: rgba(250, 250, 240, 0.8);
	color: dimgray;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
}
.floatingTitle.active {
	opacity: 0.8;
	transition: opacity 0.3s ease-in-out;
}

@media (min-width: 370px) {
	footer div {
		width: 250px;
	}
}