.header_wrapper {
  background-color: #4CAF50;
  height: 150px;
  color: white;
  margin: 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.title_wrapper {
  display: flex;
  justify-content: left;
  align-items: center;
}

.title_wrapper h1 {
  margin: 0;
  font-size: 2rem;
}



.title_wrapper img {
  height: 100px;
}


.navigation_options{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.navigation_options a{
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
}

.navigation_options a:hover {
  text-decoration: underline;
}