:root {
  --header-height: 130px;
}

div {
  box-sizing: border-box;
}

.header-container {
  background: grey;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: var(--header-height);
  background-image: url("green_houses_street.jpg");
  background-repeat: repeat;
  background-size: 10%;
  width: 100vw;
}

.logo-container {
  display: flex;
  height: var(--header-height);
  padding: 5px;
  background-color: rgba(255,255,255,0.4);
}

#logo {
  height: 100%;
}

.headshot-container {
  display: flex;
  height: calc(var(--header-height) * 1.4);
}

#headshot {
  border-radius: 50%;
  border: 6px solid #5F6215;
  /* border: 3px solid white; */
  height: 100%;
}

#karen-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  font-size: 1.2em;
  font-family: 'Architects Daughter';
  color: white;
  font-weight: 900;
  font-variant: small-caps;
  /* border: 2px dashed red; */
  height: var(--header-height);
  padding-left: 0.5em;
}



.menu-container {
  display: flex;
  height: calc(var(--header-height) * 1);
  padding: 30px;
}

#menu {
  height: 100%;
}
