.masthead {
    padding: 1rem 5rem;
    display: block;
}



.navbar ul {
  list-style-type: none; /* Removes bullet points */
  margin: 0;
  padding: 0;
  display: flex; /* Makes the ul a flex container */
  justify-content: center; /* Centers the list items horizontally */
  /* Other options for justify-content: flex-start, flex-end, space-between, space-around, space-evenly */
}

.navbar li {
  /* Optional: Add spacing or styling to list items */
  margin: 0 10px; 
}

.navbar a {
  display: block; /* Makes the links take up the full area of the li */
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}
