/* ######## CSS Reset ######## */
h1, h2, h3, h4, h5, h6, p, ol, ul, li,
fieldset, form, label, table, tbody, tfoot, thead,
tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ######## End Reset ######## */

body {
	font-family: 'Poppins', sans-serif;;
}

h1 {
	color: green;
}

#app_container {
	position: absolute;
	z-index: 2;
	background-color: gray;
	opacity: 0.7;
}

.grain_block_box {
	z-index: 2;
	background-color: gray;
	opacity: 0.7;
}

#rec_stop {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 30%);
	cursor: pointer;

	padding:10px;
	padding-left: 50px;
	padding-right: 50px;
	border-radius: 15px;
	font-family: 'Poppins', sans-serif;
	font-size: 20pt;
	color: white;
	background-color: gray;
}

#rec_stop:active {
	background-color: red;
	color: white;
}

.add_grain_text, .remove_text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
}