button {
	border: none;
	background: #FDC92A;
	color: #985d12;
	padding: 10px;
	font-size: 18px;
	border-radius: 5px;
	position: relative;
	box-sizing: border-box;
	transition: all 500ms ease; 
}

button:hover {
	background: rgba(0,0,0,0);
	color: #985d12;
	box-shadow: inset 0 0 0 3px #985d12;
}
button:visited {
	background: rgba(0,0,0,0);
	color: #985d12;
	box-shadow: inset 0 0 0 3px #985d12;
}

