@font-face {
  font-family: avenir;
  src: url(/fonts/Avenir.ttc);
}

header {
  background-color: rgb(255, 255, 255);
  border-bottom: none;
  border-width: 0.5px;
  border-color: rgb(207, 205, 205);
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: center;
  font-family: avenir;
  

  position: fixed;
  top: 0px;
  right: 0px;
  left: 0px;

  object-fit: contain;

  z-index: 1000;
  box-shadow: 1px 1px 1px 1px rgba(79, 78, 79, 0.38);
}

.close-icon {
  display: none;
}

.hamburger-menu-icon {
  display: none;
  width: 100px;
 
}


.logo {
 color: rgb(68, 31, 110);
 font-family: futura;
 font-size: x-large;
 text-align: center;
 margin-left: 20px;
}

.logo-picture {
  height: 50px;
}

.header-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.header-button {
  height: 50px;
  width: 120px;
  min-width: 50px;

  border: none;
  background-color: rgba(255, 255, 255, 0);
  padding: 0px;
  font-size: x-small;
  color: rgb(65, 56, 72);
}
.header-button-selected {
  height: 50px;
  border-bottom: solid;
  border-color:rgb(247, 130, 6); ;
  border-bottom-width: 2px;
  padding: 0px;
  padding-top: 5px;

}


.header-button:hover {
  height: 50px;
  background-color: rgb(110, 87, 136);
  color: white;
  font-size: small;
  border: none;
}

.header-button-selected:hover {
  height: 50px;
  background-color: rgb(110, 87, 136);
  color: white;
}

.header-button:active {
  background-color: rgb(116, 19, 19);
}

@media (max-width: 1000px) {
  .header-button {
    height: 50px;
    width: 100px;
  }
}

@media (max-width: 600px) {
  .nav-container{
    position: fixed;
    display: none;
    background: rgba(234, 220, 215, 0.943);
    height: 100vh;
    width: 200px;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 2;
    transition: 1s;
    
  }
  .close-icon {
    display: block;
    color: white;
    margin: 10px;
    width: 5%;
  }
  
  .hamburger-menu-icon {
    display: block;
    margin-right: 20px;
    width: 5%;
  }

  .header-buttons{
    display: flex;
    flex-direction: column;
    
  }

  .header-button {
    width: 200px;
  }

  .nav-links-display {
    display: block;
    transition: 1s;
  }

  .logo-picture {
    height: auto;
    width: 150px;
  }
}

@media (max-width: 420px) {

  

  .header-buttons {
    display: none;
   
  }

  .display-menu{
    height: 50px;
    width: 50px;
  }


  .header-button {
    width: 50px;
  }

  .logo-picture {
    height: auto;
    width: 80px;
  }

  .logo{
    padding-top: 10px;
    height: 40px;
  }
}

@media (max-width: 325px) {
  .header-button {
    width: 50px;
  }

  .logo-picture {
    height: auto;
    width: 80px;

  }
}

@media(max-width: 281px){


  .header-button {
    width: 50px;
  }



  .logo-picture {
    height: auto;
    width: 80px;

  
  }

 
}