#container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	grid-template-rows: 60% 40%;
}

.main-box,
.controls-box {
	height: 100%;
	background: #000000;
	display: grid;
}

#maze {
	position: absolute;
	width: 415px;
	height: 290px;
	top: 30vh;
	left: 50%;
	transform: translate(-50%, -50%);
    background: #000000;

}

.buttons {
	width: 300px;
	height: 200px;
	background: #000000;
	align-self: center;
	justify-self: center;
	display: grid;
	grid-template-rows: 100px 100px;
	grid-template-columns: 100px 100px 100px;
}

.controls-button {
	width: 90px;
	height: 90px;
	border: 4px #DAA520 solid;
	border-bottom: 4px #DAA520 solid;
	align-self: center;
	justify-self: center;
	cursor: pointer;
	border-radius: 20px;
	display: grid;
	box-shadow: 4px 4px 10px rgba(255, 255, 255, 0.2);
}

.arrow {
	height: 20px;
	width: 20px;
	align-self: center;
	justify-self: center;
	color: #DAA520;
	font-size: 20px;
	line-height: 20px;
	text-align: center;
	color: #DAA520;
}

#button-up {
	grid-column-start: 2;
}
#button-down {
	grid-column-start: 2;
	grid-row-start: 2;
}
#button-left {
	grid-column-start: 1;
	grid-row-start: 2;
}
#button-right {
	grid-column-start: 3;
	grid-row-start: 2;
}



.barrier {
	position: absolute;
	background: #DAA520;
}

#top-barrier {
	top: 25px;
	left: 25px;
	width: 375px;
	height: 4px;
}

#bottom-barrier {
	top: 275px;
	left: 25px;
	width: 375px;
	height: 4px;
}

#player,
#home {
	position: absolute;
	top: 100px;
	left: 100px;
	width: 25px;
	height: 25px;
	border-radius: 20px;
}
.emoji {
	position: absolute;
	top: 4px;
	left: 1px;
	width: 1px;
	height: 13px;
	border-radius: 20px;
	font-size: 15px;
	line-height: 15px;
	text-align: left;
}

button {
	display: inline-block;
	border: none;
	padding: none;
	margin: 0;
	outline: none;
	background: none;
	-webkit-tap-highlight-color: transparent;
}

button:active {
	transform: scale(1);
}

#refreshButton {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
  }