.header {
    height: 100px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;

    background-color: white;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: rgb(228, 228, 228);

}

.header a:hover,
.header div:hover { 
  color: #00754a;
}


.left-section {
  margin-left: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
   
}


.left-section div { 
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px;  
}

.starbucks-logo { 
    width: 50px;
    margin-right: 30px;
}

.middle-section { 
  display: flex;
  flex: 1;
}

.right-section { 
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 392px;
}

.find-location { 
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-right: 50px;
  font-size: 13.5px;
}

.right-section svg { 
  width: 24px;
  display: flex;
  padding-right: 9px;
}

.right-section button { 
  margin: 8px;
}
.sign-in {
  background-color: white;
  color: black;
  border: solid; 
  border-width: 1px;
  height: 32px;
  width: 78px; 
  border-radius: 18px;
  font-family: "SoDo Sans SemiBold";
}

.join-now { 
  background-color: black;
  color: white;
  border: none; 
  height: 32px;
  width: 98px; 
  border-radius: 18px;
  font-family: "SoDo Sans SemiBold";
}

.join-now:hover { 
  background-color: rgba(0, 0, 0, 0.7);
}
.sign-in:hover { 
  background-color: rgba(0, 0, 0, 0.06);
}
