﻿.header-container {
  background-color: #232323E0;
  padding: 0 16px;
  height: 64px;
  display: flex;
  align-items: center !important;
  overflow: clip;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(16px) saturate(250%);
  justify-content: space-between;
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.header-menu-button {
  display: none;
  padding: 8px;
  margin-left: -8px;
  border-radius: 4px;
}

  .header-menu-button:hover {
    background-color: #FFFFFF10;
  }

.header-logo {
  height: 32px;
}

.header-title {
  font-size: 24px;
}

@media (max-width: 800px) {
  .header-menu-button {
    display: flex;
  }
}
