body {
	background-color: rgb(153, 178, 218);
	/* background-image: url("background.jpg"); */
	/* background-size: cover; */
}

div {
	user-select: none;
}

.playground {
	display: grid;
	grid-template-columns: 1fr 14rem 1fr 14rem 1fr;
	grid-template-rows: 1fr 14rem 1fr 14rem 1fr; 
	width: 30rem;
}

#dial1 {
	grid-area: 2 / 2 / 3 / 3;
}

#dial2 {
	grid-area: 2 / 4 / 3 / 5;
}

#dial3 {
	grid-area: 4 / 2 / 5 / 3;
}

#dial4 {
	grid-area: 4 / 4 / 5 / 5;
}

.dial {
	top: 50%;
	left: 50%;
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.5);
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr; 
}

.symbol-container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-area: 1 / 1 / 2 / 3;
	transition: transform .8s cubic-bezier(.12,.53,.25,1);
}

.symbol {
	border-radius: 50%;
	border: 1px solid black;
	grid-area: 1 / 3 / 2 / 4;
	display: grid;
	place-content: center;
}

.turn-left-clickzone {
	grid-area: 1 / 1 / 2 / 2;
	display: grid;
	z-index: 1;
}

.turn-right-clickzone {
	grid-area: 1 / 2 / 2 / 3;
	display: grid;
	z-index: 1;
}