.header{
  display: flex;
  flex-direction: column;
  margin: 0.25rem 0.25rem 0.5rem 0.25rem;
  position: relative;
}
.title-container{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.logo{
  width: 7.5rem;
  height: 7.5rem;
}
.title{
  font-size: 2.75rem;
  font-weight: 500;
  flex-grow: 1;
  text-align: center;
}
.header-hr{
  margin: 0 auto;
  width: 98%;
}
.nav-button-wrap{
  display: flex;
  flex-direction: row;
  font-size: 1.25rem;
}
.nav-button-container{
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
}
.nav-button{
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.dropdown{
  flex-basis: 0;
  flex-grow: 1;
  position: relative;
}
.dropdown-label{
  display: block;
  text-align: center;
}
.dropdown-label:hover {
  color:#BDBDBD;
}
.dropdown-box {
  position: absolute;
  left: 0;
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  transition: max-height 0.5s;
  clip-path: inset(0 -3.125rem -3.125rem -3.125rem);
}
.dropdown:hover .dropdown-box {
  max-height: 12.5rem;
}
.dropdown-button{
  margin-left: 0.625rem;
  overflow: hidden;
}
.dropdown-button.selected{
  color:red;
}
#language-button {
  flex-basis: 7.5rem;
  flex-grow: 0;
}
.language-icon {
  height: 1.625rem;
  margin: 0.46875rem 0 0.40625rem 0;
  stroke: black;
}
.language-icon:hover {
  stroke: #BDBDBD;
}
@media (max-width:50rem){
  .logo{
    width: 5rem;
    height: 5rem;
  }
  .title{
    font-size: 1.625rem;
  }
  .nav-button-wrap{
    flex-direction: column;
  }
  #language-button {
    flex-basis: 0;
    flex-grow: 1;
  }
}
@media (max-width: 28.75rem){
  .logo{
    width: 4.6875rem;
    height: 4.6875rem;
  }
  .title{
    font-size: 1.25rem;
  }
}
