.topnav {
  overflow: hidden;
  background-color: #e6874a;
}

.topnav a {
	float: left;
	display: block;
	color: #990000;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.topnav a:hover {
	background-color: #f05a29;
	color: #FFFFFF;
}

.topnav a.active {
	background-color: #FF3300;
	color: white;
}

.topnav .icon {
  display: none;
}
.floating-menu {
    position: fixed;
    bottom: 90px;
    right: 20px;
    display: none;
	z-index: 1000;
}

.menu-button {
	background-color: #FFCC00;
	color: white;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 24px;
	cursor: pointer;
	z-index: 1000;
}

.menu-items {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    position: absolute;
    right: 0;
    bottom: 80px;
    width: 160px;
    display: none;
}

.menu-items li {
    padding: 12px;
    text-align: center;
}

.menu-items li a {
    color: #333;
    text-decoration: none;
}

.menu-items li a:hover {
    color: #f44336;
}
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}