.ht_header {
  display:flex;
  flex-direction:column;
}

#header_top_row {
  height:80px;
  display:flex;
  flex-direction:row;
  padding-top: 20px;
  padding-bottom:20px;
  justify-content: space-between;
}

#header_logo {
  height:65px;
  margin-left:32px;
  margin-top:27px;
}

#header_title_div {
  display:flex;
  flex-direction:column;
  margin-left: 25px;
}

#header_title {
  font-size:32px;
  font-family: sans-serif;
  letter-spacing: 0.04em;
  color: var(--color-dark-dark);
}

#header_subtitle {
  font-size:21px;
  font-family: 'Kalam', cursive;
  font-weight: 300;
  letter-spacing:0.03em;
  padding-left: 45px;
  padding-top: 5px;
  color: var(--color-dark-light);
}

#header_canada_icon {
  margin-left: 7px;
  margin-bottom: 5px;
  height: 25px;
  opacity: 0.8;
  transform:rotate(10deg);
}

#header_android_div {
  display:inline-flex;
  flex-direction: row;
  align-items: center;
  margin-left:auto; /* this works in unison with the parent divs justify-content = space-between to make the title and logo left and this right */
  padding-right:40px;
}

#header_android_text {
  font-size:18px;
  font-family: 'Kalam', cursive;
  font-weight:300;
  letter-spacing:0.03em;
  color: var(--color-dark-accent);
}

#header_android_img {
  height:50px;
  margin-left: 10px;
}

#header_menu_bar {
  height: 35px;
  margin-bottom:35px;
  background-color: var(--color-light-light);
  justify-content: center;
  align-items: center;
  flex-direction: row;
  display: flex;
}

.header_menu_link {
  padding-right: 25px;
  font-size: 17px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--color-primary-dark);
  font-family: sans-serif;
  text-decoration: none;
}

.header_menu_link:hover {
  color: var(--color-primary-tone-light);
}
