* {
  margin:0;
  padding:0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(images/background2.jpg);
}
#navBar{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content:space-around;
  height: 40px;
  margin-top: 20px;
}
.navItem {
  text-decoration: none;
  font-family: Georgia, Times, 'Times New Roman', serif;
  border-style: solid;
  color: white;
  list-style-type:none;
  border-radius: 20px 100px;
  border-color: rgb(8, 51, 72);
  padding: 10px 20px;
}.navItem:hover {
  background-color: rgb(6, 101, 179);
}.navItem:active {
  background-color: rgb(1, 93, 12);
}