/* Accordian CSS */
/* Style the buttons that are used to open and close the accordion panel */

.accordion {
  background-color: #693000;
	font-family: Bangers;
	font-size: 18px;
	letter-spacing: 2px;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #F87100;
}

.panel {
	padding: 10px;
	background-color: rgba(105,48,0,0.73);
	color: white;
	display: none;
	overflow: hidden;
	margin-top: 1px;
	border-radius: 5px;	
}