:root {
	/* Global variables */
	--doddle-gray: #444444;
	--doddle-font: "Roboto", sans-serif;
	--doddle-orange: #ff6600;
	--doddle-white: #ffffff;
  }
  
  body {
	color: var(--doddle-gray);
	font-family: var(--doddle-font);
	margin: 0;
	padding: 0;
  }
  
  html {
	font-size: 16px;
	overflow: hidden;
  }
  
  .main {
	background-color: var(--doddle-gray);
	border-style: none;
	position: relative;
	margin: 0;
	padding: 0 0 20px 0;
	min-height: 100vh;
  }
  
  .content {
	text-align: center;
	position: relative;
	padding: 10px;
  }
  
  .interface button i {
	font-size: 2.5rem;
	font-weight: bold;
  }
  
  .interface button {
	background-color: var(--doddle-orange);
	border-radius: 10px;
	border-style: none;
	color: var(--doddle-white);
	font-size: 1.5rem;
	font-weight: bold;
	width: 80px;
	height: 50px;
	margin-left: 10px;
	margin-top: 10px;
	transition: 0.1s;
	box-shadow: 3px 3px 3px 3px black;
  }
  
  .interface button:hover {
	background-color: var(--doddle-gray);
	cursor: pointer;
	box-shadow: 0px 0px 0px 0px;
	border: 1px solid black;
  }
  
  .interface {
	display: flex;
	justify-content: space-between;
  }
  
  /* Help text */
  .tooltip {
	position: relative;
  }
  .tooltip .tooltiptext {
	visibility: hidden;
	width: 40vw;
	background-color: var(--doddle-white);
	border: 2px solid var(--doddle-gray);
	color: var(--doddle-orange);
	text-align: left;
	border-radius: 6px;
	padding: 5px;
	position: absolute;
	z-index: 1;
	bottom: 150%;
	left: 15%;
	margin-right: -55px;
	opacity: 0;
	transition: opacity 0.3s;
	box-shadow: 5px 5px 5px 5px black;
	font-size: 1.3rem;
	font-weight: 500;
	font-family: var(--doddle-font);
  }
  .tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 15%;
	margin-right: -3px;
	border-width: 15px;
	border-style: solid;
	border-color: var(--doddle-white) transparent transparent transparent;
  }
  .tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
  }
  
  .screen {
	background-color: var(--doddle-white);
	border-radius: 10px;
	padding: 50px 50px 25px 50px;
	margin: 5px auto;
  }
  
  .startPanel {
	background-color: var(--doddle-white);
	border-radius: 5px;
	border-color: var(--doddle-gray);
	border-width: 3px;
	border-style: solid;
	font-size: 1.5rem;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 100px;
	min-width: 40%;
	box-shadow: 10px 10px 10px 0px black;
  }
  
  .startPanel p {
	margin: 100px;
  }
  
  .intro img {
	width: 600px;
  }
  
  .heading {
	color: var(--doddle-gray);
	text-align: center;
	font-size: 1.8rem;
	text-transform: capitalize;
  }
  
  .intro,
  .startPanel {
	position: absolute;
  }
  
  /* Content_________________________________________________________________ */
#monitor {
	position: relative;
	width: 55vw;
	height: 55vh;
	background: #fff;
	font-family: var(--doddle-font);
	color: var(--doddle-gray);
	font-size: 13px;
	display: flex;
	flex-direction: column;
	border: 10px solid navy;
	border-radius: 20px;
	margin: auto;
}
#monitor canvas {
	width: 55vw;
	height: 55vh;
	background: #fff;
}

.button {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #ffffff;
	padding: 10px 20px;
	background: #333333;
	border-radius: 3px;
	border: 1px solid #000000;
}
.button:hover {
	color: #000;
	background: #fff;
}

.checkboxSquared {
	display: flex;
	justify-content: space-between;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 0;
	left: 1%;
	margin: 20px 0;
	background: #fcfff4;
	background: linear-gradient(to bottom, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
	box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
}

.checkboxSquared:nth-child(1) {
	top: 10%;
}
.checkboxSquared:nth-child(2) {
	top: 20%;
}
.checkboxSquared:nth-child(3) {
	top: 40%;
}
.checkboxSquared:nth-child(4) {
	top: 60%;
}
.checkboxSquared:nth-child(5) {
	top: 80%;
}
.checkboxSquared span {
	position: absolute;
	top: 3%;
	left: 40px;
	font-size: 1.5rem;
	color: var(--doddle-gray);
}
.checkboxSquared label {
	border-radius: 50%;
	width: 28px;
	height: 28px;
	cursor: pointer;
	position: absolute;
	left: -1px;
	top: 0;
	background: linear-gradient(to bottom, #222222 0%, #45484d 100%);
	box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px white;
}
.checkboxSquared label:after {
	content: "";
	width: 12px;
	height: 6px;
	position: absolute;
	top: 5px;
	left: 5px;
	border: 4px solid #fcfff4;
	border-top: none;
	border-right: none;
	background: transparent;
	opacity: 0;
	transform: rotate(-45deg);
}
.checkboxSquared label:hover::after {
	opacity: 0.3;
}
.checkboxSquared input[type="checkbox"] {
	visibility: hidden;
}
.checkboxSquared input[type="checkbox"]:checked + label:after {
	opacity: 1;
}