body {
  margin: 0;
  padding: 0;
}

.menu {
  background-color: #333;
  overflow: hidden;
  text-align: center;
  padding: 10px; /* Adjust padding as needed */
}

.menu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
}


.menu .donate-link {
  background-color: aqua;
  color: black;
  border: 4px solid aqua;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  float: inline-end;
  text-decoration: none;
  margin-left: 10px; /* Provide spacing between items */
}

@media only screen and (max-width: 600px) {
  .menu {
      text-align: center; /* Center align on small screens */
  }

  .menu a {
      display: block;
      text-align: center; /* Center align links on small screens */
      padding: 10px 20px; /* Adjust padding for touch interaction */
  }

  .menu .donate-link {
      display: block;
      margin: 10px auto; /* Center the button on small screens */
      text-align: center; /* Center align text */
      width: 100%;
  }
}
