.Header{
    position: fixed;
    background-color: rgb(238, 209, 167);
    padding: 20px 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 45px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    

  }
.Header-Left-section{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
  .Header-title{
    text-decoration:underline;
    font-weight: bold;
    font-size: 45px;
    flex: 1;
    margin: 5px;
    vertical-align: top;

  }
  .Header-Logo{
    width: 50px;
    border-radius: 10px;
  }
  .Header-Middle-section{
    flex: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;

  }
  
  .Header-Buttons{
    flex: 1;
    white-space: nowrap;
  }
  .Header-Right-section{
    flex: .40;
    margin-left: 10px;
    margin-right: 35px;
    max-width: 500px;
    display: flex;
    align-items: center;
  }
  
  .search-bar {
    flex: 1;
    height: 20px;
    padding-left: 10px;
    font-size: 14px;
    border: 1px solid rgb(192, 192, 192);
    border-radius: 2px;
    box-shadow: inset 1px 2px 3px rgba(0, 0, 0, 0.05);
    width: 0;
  }
  
  .search-bar::placeholder {
    font-size: 16px;
  }
  .Header-logo{
    width: 50px;
    vertical-align: top;
  }
  @media (max-width: 550px) {
    .Header-Buttons{
      flex-direction: column;
      white-space: nowrap;
      margin-bottom: 10px;
    }
    Header-search-bar {
      width: 100%;
    }
  }
  @media (min-width: 551px) and (max-width: 800px) {
    .Header-Title{
      white-space: wrap;
    }
  }
  @media (min-width: 801px) {
    .Header-Title{
      white-space: nowrap;
    }
  }

  .Header-page-button{
    background-color:rgb(223, 137, 17);
    color:white;
    font-size: 14px;
    border:none;
    border-radius:18px;
    cursor:pointer;
    padding: 12px 12px;
    margin-bottom:8px;
    transition: opacity 0.15s;
    vertical-align: top;
  }
  .Header-page-button:hover{
    opacity: 0.7;
    text-decoration:underline;
  }
  .Header-page-button:active{
    opacity: 0.4;
  }
  .search-button {
    height: 45px;
    width: 66px;
    background-color: rgb(244, 244, 244);
    border-width: 1px;
    border-style: none;
    margin-left: -1px;
    margin-right: 10px;
  }
  .search-button,
  .logo-button,
  .project-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}
.logo-button {
  background-color: rgb(238, 209, 167);
  border-style: none;
}

.logo-button:active img {
  opacity: .7;
}


  .search-bar{
    border-left: none;
    width: 200px;
    padding: 12px 0px;


}
