
h1 {color:blue;}
.nav-button {
   display: flex;
  flex-wrap: wrap;
  gap: 12px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Button color */
  color: white; /* Text color */
  text-decoration: none; /* Removes the underline */
  border-radius: 5px; /* Rounds the corners */
  font-weight: bold;
}
.nav-button:hover {
  background-color: #0056b3;
  /* Darkens the button on hover */
}