:root {
	--background: #000;
	--highlight: #ffffff21;
	--text: #fff;
	--button-size: 5rem;
}

* {
	margin: 0;	
	font-family: "Nunito", sans-serif;
	font-weight: bold;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

main {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.canvas {
	border-radius: 4px;
	box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
}

#ui {
	position: absolute;
	top: 0;
	left: -25rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.big-checkbox {
	transform: scale(1.5);
}

#canvas-container {
	display: flex;
	width: 1024px;
	height: 720px;
}

#hidden-canvas-container {
	display: flex;
	flex-direction: column;
}

.square {
	flex: 1;
}

.checkbox-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-top: 24px;
	height: 60px;
	margin-right: 1rem;
}

.hidden {
	display: none;
}

.vertical {
	display: flex;
	flex-direction: column;
}

#mode-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-column: span 2;
	padding-bottom: 5rem;
}

#mode-select {
	margin-top: 1rem;
}
