.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: #46423e;
  color: #FFAA00;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1000;

  backdrop-filter: blur(10px);
  border-bottom: 3px solid rgba(255,255,255,0.1);
}

.header-left,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
}
