#hollow {
	width:  65% ;
	height: 100px ;
	margin: 0;
	margin-left:15%;
    padding-top: 10px;
	padding-left: 20px;
	padding-bottom: 10px;
    background-image: linear-gradient(gold, orange);
	border-radius:25px;

	
} 

#navigation {
	width:  98% ;
	height: 80px ;
	margin: 0;
    padding-top: 20px;
	padding-left: 20px;
    background-image: linear-gradient(orange, gold);
	border-radius:25px;

	
} 
.btn-group button {
    background-color: #e68a00; /* background */
    border: 1px #995c00; /* border */
    color: #4d2e00; /* White text */
	font-size:20px;
	/* font-family:"Ribeye", cursive; */
	font-family:cursive, Times, serif;
	padding: 0px 0px;/* Some padding */
    cursor: pointer; /* Pointer/hand icon */
    float: left; /* Float the buttons side by side */
	border-radius: 10px;
	width:15%;
	height:44px;
	margin-left:4%;

	
}

/* Clear floats (clearfix hack) */
.btn-group:after {
    content: "";
    clear: both;
    display: table;
}

.btn-group button:not(:last-child) {
    border-right: none; /* Prevent double borders */
}

/* Add a background color on hover */
.btn-group button:hover {
    background-color: #995c00;
	color:gold;
}

.btn-group button:active {
  background-color: #995c00;
  color: white;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 800px) {
.btn-group button {
	font-size:15px;
	height:30px;
	margin-left:1%;
	padding: 0px 0px;/* Some padding */;
	font-family:cursive, verdana, Times, serif;
	width:17%;

   }
	
}

@media (max-width: 800px) {
    .column.middle, .column.right {
        width: 100%;
    }
}
@media (max-width: 800px) {
#hollow {
	margin-left:0%;
	width:  100% ;
	height: 80px ;
    };
}

@media (max-width: 800px) {
#navigation {
	height: 60px ;	
} 
}