/* Add a light yellow background color to the top navigation */
.topnav {
   overflow: hidden;
   background-color: #FFFF66; /* ltyellow */
}

.topnav-links {
   list-style: none; 
   display: flex;
   margin: 0;
   padding: 0;
   }

.topnav-right-align {
   margin-left: auto; /* Pushes this element and subsquent elements to the right */
   }
/* Style the links inside the navigation bar */
.topnav a {
   float: left;
   color: black;	/* yellow */
   /* color: #f2f2f2;	/* Gray */ */
   text-align: center;
   padding: 14px 16px;
   text-decoration: none;
   font-size: 20; /* was 20px */
}

/* Add a color to the active/current link */
.topnav a.active {
   background-color: #04AA60;  /* Lime Green */
   color: yellow;
}

/* Donate Button */
.topnav a.donate {
   background-color: #04AA60;  /* Light Green */
   color: white;
   float: right;
}

/* Change the color of links on hover */
.topnav a:hover .dropdown:hover .dropbtn {
   background-color: #D3D3D3; /* gray for hover */
   color: black;
}

/* Create a right-aligned (split link inside the navigation bar */
.topnav a.split {
   float: right;
   background-color: #BFF973;
   color: black;
   }

.topnav #myLinks {
  display: none;
  }

.topnav a.icon {
  color: white;
  display: block;
  postion: absolute;
  right: 0;
  top: 0;
  }

.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #555;
  height: 500px;
  color: white;
  border-radius: 10px;
  }

.active {
  background-color: #04AA6D;
  color: white;
  }

.navbar {
  overflow: hidden;
  background-color: #333; /* Gray */
  font-family: Arial:
  }

.navbar a {
  float: left;
  font-size: 16xp;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  }

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
  }

.dropdown {
  float: right;
  overflow: hidden;
  }

.dropdown .droptbn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
 }

.dropbtn {
  /* background-color: #4CAF50; */
  background-color: #FFFF66;
  color: black;
  padding: 13px 16px;
  fontsize: 16px;
  border: none;
  cursor: pointer;
  }

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  }

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  }

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
  }

.dropdown:hover .dropdown-content {
  display: block;
  }

.menu-icon {
  postion: absolute;
  left: 20px;
  cursor: pointer;
  font-size: 24px;
  }

.leftSide {
  width: calc(50% - 100px);
  display: flex;
  justify-content: center;
  }

.rightSide {
  width: calc(50% - 100px);
  display: flex;
  justify-content: center;
  }

