#navigationBar {
  display: flex;
  flex-direction: row;
  justify-content: center; /* Centers everything horizontally */
  align-items: center;     /* Aligns buttons and H1 vertically */
  gap: 15px;
  margin-top: 0;           /* Cleaned up top margin */
  background-color: grey;
  border-radius: 0 0 5px 5px;
  font-family: helvetica;
  padding: 10px;           /* Added padding so it's not cramped */
}

#navigationBar button {
  background-color: yellow;
  color: black;            /* Changed to black; white on yellow is hard to read! */
  font-size: 20px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

body {
  background-color: black;
  margin: 0;               /* Removes the default white gap around the edge */
}
