.header {
  height: 55px;

  display: flex;
  flex-direction: row;
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  background-color: white;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(228, 228, 228);
}
.left-section {
  display: flex;
  align-items: center;
}
.navbar{
  display: flex;
  padding: 12px;
}
.navbar-image-container{
  display:flex;
  padding-left: 15px;
}
.navbar-image{
  height: 55px;
}
.navbar ul{
  list-style-type: none;
  background-color:white;
  padding: 0px;
  margin: 0px;
}
.navbar a{
  color:rgb(0, 0, 0);
  text-decoration: none;
  padding: 5px;
}
.navbar a:hover{
  background-color:rgb(230, 230, 230);
}